fix: sets ERROR as default level for logger to avoid spamming the log file during gb imports

This commit is contained in:
lantzelot-swe 2021-04-13 22:06:30 +02:00
parent 6b682b099a
commit 3f64e53a59
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ public class ExceptionHandler extends JDialog
public static void logMessage(final String message)
{
logger.error(message);
logger.debug(message);
}
public static void logException(final Throwable ex, final String message)

View File

@ -27,7 +27,7 @@
</encoder>
</appender>
<root level="debug">
<root level="error">
<appender-ref ref="STDOUT" />
<appender-ref ref="FILE" />
</root>