public interface Printer
There are 4 main implementation of Printer.
AndroidPrinter, print log to android shell terminal.
ConsolePrinter, print log to console via System.out.
FilePrinter, print log to file system.
RemotePrinter, print log to remote server, this is empty implementation yet.
| Modifier and Type | Method and Description |
|---|---|
void |
println(int logLevel,
java.lang.String tag,
java.lang.String msg)
Print log in new line.
|