mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-12-18 22:57:47 +01:00
Addendum - only write to log if specified by settings
- Commit forgotten removal of `!` during refactoring
This commit is contained in:
parent
c28a1b537f
commit
a103aee4da
@ -33,7 +33,7 @@ public final class ConsoleLogger {
|
|||||||
*/
|
*/
|
||||||
public static void info(String message) {
|
public static void info(String message) {
|
||||||
wrapper.getLogger().info(message);
|
wrapper.getLogger().info(message);
|
||||||
if (!Settings.useLogging) {
|
if (Settings.useLogging) {
|
||||||
writeLog(message);
|
writeLog(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user