MCPcopy
hub / github.com/greenrobot/EventBus / SystemOutLogger

Class SystemOutLogger

EventBus/src/org/greenrobot/eventbus/Logger.java:48–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46 }
47
48 class SystemOutLogger implements Logger {
49
50 @Override
51 public void log(Level level, String msg) {
52 System.out.println("[" + level + "] " + msg);
53 }
54
55 @Override
56 public void log(Level level, String msg, Throwable th) {
57 System.out.println("[" + level + "] " + msg);
58 th.printStackTrace(System.out);
59 }
60
61 }
62
63 class Default {
64 public static Logger get() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected