Skip to content

Commit

Permalink
setLogReportToConsole to ConfigSettings (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
YellowZaki committed Jan 28, 2021
1 parent 25ba4dc commit aeb48c6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/world/bentobox/level/config/ConfigSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -376,5 +376,13 @@ public void setCalculationTimeout(int calculationTimeout) {
public boolean isLogReportToConsole() {
return logReportToConsole;
}


/**
* @param logReportToConsole if logReportToConsole should be shown on console
*/
public void setLogReportToConsole(boolean logReportToConsole) {
this.logReportToConsole = logReportToConsole;
}

}

0 comments on commit aeb48c6

Please sign in to comment.