setLogReportToConsole to ConfigSettings (#209)

This commit is contained in:
Alberto 2021-01-28 16:30:45 +01:00 committed by GitHub
parent 25ba4dc7eb
commit aeb48c6f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -376,5 +376,13 @@ public class ConfigSettings implements ConfigObject {
public boolean isLogReportToConsole() {
return logReportToConsole;
}
/**
* @param logReportToConsole if logReportToConsole should be shown on console
*/
public void setLogReportToConsole(boolean logReportToConsole) {
this.logReportToConsole = logReportToConsole;
}
}