in src/main/java/com/aws/sap/sample/lambda/sap/oauth/ExecutionLogger.java [14:20]
public ExecutionLogger(Context context, Properties props) {
isLoggingEnabled = PropertyHandler.getValue(props, PropertyHandler.CFG_LOGGING_ENABLED).toLowerCase();
isLogToScreen = PropertyHandler.getValue(props, PropertyHandler.CFG_LOG_TO_SCREEN).toLowerCase();
if(isLogToScreen == "false") {
logger = context.getLogger();
}
}