MCPcopy Index your code
hub / github.com/Grover-c13/PokeGOAPI-Java / Logger

Interface Logger

src/main/java/com/pokegoapi/util/Logger.java:21–51  ·  view source on GitHub ↗

Created by Will on 7/20/16.

Source from the content-addressed store, hash-verified

19 * Created by Will on 7/20/16.
20 */
21@SuppressWarnings("checkstyle:methodname")
22public interface Logger {
23
24 void v(String tag, String msg);
25
26 void v(String tag, String msg, Throwable tr);
27
28 void d(String tag, String msg);
29
30 void d(String tag, String msg, Throwable tr);
31
32 void i(String tag, String msg);
33
34 void i(String tag, String msg, Throwable tr);
35
36 void w(String tag, String msg);
37
38 void w(String tag, String msg, Throwable tr);
39
40 void w(String tag, Throwable tr);
41
42 void e(String tag, String msg);
43
44 void e(String tag, String msg, Throwable tr);
45
46 void wtf(String tag, String msg);
47
48 void wtf(String tag, Throwable tr);
49
50 void wtf(String tag, String msg, Throwable tr);
51}

Callers 6

vMethod · 0.65
dMethod · 0.65
iMethod · 0.65
wMethod · 0.65
eMethod · 0.65
wtfMethod · 0.65

Implementers 2

BaseLoggersrc/main/java/com/pokegoapi/util/BaseL
Logsrc/main/java/com/pokegoapi/util/Log.j

Calls

no outgoing calls

Tested by

no test coverage detected