Verified Commit 9fcdd462 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(logger): remove accidential class field declaration

parent 04ae3ee4
......@@ -16,7 +16,7 @@ public class Logging
mainLogger.setUseParentHandlers(false);
handler = new ConsoleHandler();
handler.setFormatter(new SimpleFormatter() {
private static final String format = "[%1$tFT%1$tT%1$tz] [%2$-7s] [%3$s.%4$s] %5$s%n";
final String format = "[%1$tFT%1$tT%1$tz] [%2$-7s] [%3$s.%4$s] %5$s%n";
@Override
public synchronized String format(LogRecord lr) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment