in https://github.com/j-kopf/nextJSGraphQLapp_sanitized/blob/main/backend/FinancialAccountManager.java
Multiple instances of System.out.println usage, which is problematic for performance reasons + also logs everything to system console. ( in the case of these messages contains leaked data, could cause security issues )
Replace all usages of System.out.print with logger.info/warn & make sure to remove any customer PII!
in https://github.com/j-kopf/nextJSGraphQLapp_sanitized/blob/main/backend/FinancialAccountManager.java
Multiple instances of
System.out.printlnusage, which is problematic for performance reasons + also logs everything to system console. ( in the case of these messages contains leaked data, could cause security issues )Replace all usages of
System.out.printwithlogger.info/warn& make sure to remove any customer PII!