Logger.java
2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.wd.base.log;
import static com.wd.base.log.Utils.checkNotNull;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
/**
* Logger, but more pretty, simple and powerful
*/
public final class Logger {
public static final int VERBOSE = 2;
public static final int DEBUG = 3;
public static final int INFO = 4;
public static final int WARN = 5;
public static final int ERROR = 6;
public static final int ASSERT = 7;
@NonNull
private static Printer printer = new LoggerPrinter();
private Logger() {
// no instance
}
public static void printer(@NonNull Printer printer) {
Logger.printer = checkNotNull(printer);
}
public static void addLogAdapter(@NonNull LogAdapter adapter) {
printer.addAdapter(checkNotNull(adapter));
}
public static void clearLogAdapters() {
printer.clearLogAdapters();
}
/**
* Given tag will be used as tag only once for this method call regardless of the tag that's been
* set during initialization. After this invocation, the general tag that's been set will
* be used for the subsequent log calls
*/
public static Printer t(@Nullable String tag) {
return printer.t(tag);
}
/**
* General log function that accepts all configurations as parameter
*/
public static void log(int priority, @Nullable String tag, @Nullable String message,
@Nullable Throwable throwable) {
printer.log(priority, tag, message, throwable);
}
public static void d(@NonNull String message, @Nullable Object... args) {
printer.d(message, args);
}
public static void d(@Nullable Object object) {
printer.d(object);
}
public static void e(@NonNull String message, @Nullable Object... args) {
printer.e(null, message, args);
}
public static void e(@Nullable Throwable throwable, @NonNull String message, @Nullable Object... args) {
printer.e(throwable, message, args);
}
public static void i(@NonNull String message, @Nullable Object... args) {
printer.i(message, args);
}
public static void v(@NonNull String message, @Nullable Object... args) {
printer.v(message, args);
}
public static void w(@NonNull String message, @Nullable Object... args) {
printer.w(message, args);
}
/**
* Tip: Use this for exceptional situations to log
* ie: Unexpected errors etc
*/
public static void wtf(@NonNull String message, @Nullable Object... args) {
printer.wtf(message, args);
}
/**
* Formats the given json content and print it
*/
public static void json(@Nullable String json) {
printer.json(json);
}
/**
* Formats the given xml content and print it
*/
public static void xml(@Nullable String xml) {
printer.xml(xml);
}
}