Exemplo n.º 1
0
 public static void v(String tag, Object msg) {
   printer.log(tag, LogLevel.VERBOSE, msg);
 }
Exemplo n.º 2
0
 public static void d(String tag, Object msg) {
   printer.log(tag, LogLevel.DEBUG, msg);
 }
Exemplo n.º 3
0
 public static void w(Object msg) {
   printer.log(LogLevel.WARN, msg);
 }
Exemplo n.º 4
0
 public static void e(Object msg) {
   printer.log(LogLevel.ERROR, msg);
 }
Exemplo n.º 5
0
 public static void d(Object msg) {
   printer.log(LogLevel.DEBUG, msg);
 }
Exemplo n.º 6
0
 public static void i(Object msg) {
   printer.log(LogLevel.INFO, msg);
 }
Exemplo n.º 7
0
 public static void e() {
   printer.log(LogLevel.ERROR, "");
 }
Exemplo n.º 8
0
 public static void v(Object msg) {
   printer.log(LogLevel.VERBOSE, msg);
 }
Exemplo n.º 9
0
 public static void i() {
   printer.log(LogLevel.INFO, "");
 }
Exemplo n.º 10
0
 public static void w() {
   printer.log(LogLevel.WARN, "");
 }
Exemplo n.º 11
0
 public static void d() {
   printer.log(LogLevel.DEBUG, "");
 }
Exemplo n.º 12
0
 public static void v() {
   printer.log(LogLevel.VERBOSE, "");
 }
Exemplo n.º 13
0
 public static void e(String tag, Object msg) {
   printer.log(tag, LogLevel.ERROR, msg);
 }
Exemplo n.º 14
0
 public static void w(String tag, Object msg) {
   printer.log(tag, LogLevel.WARN, msg);
 }
Exemplo n.º 15
0
 public static void i(String tag, Object msg) {
   printer.log(tag, LogLevel.INFO, msg);
 }