Esempio n. 1
0
 private static void error(I2PAppContext ctx, String msg, Throwable t) {
   log(ctx, Log.ERROR, msg, t);
 }
Esempio n. 2
0
 private static void error(String msg, Throwable t) {
   log(I2PAppContext.getGlobalContext(), Log.ERROR, msg, t);
 }
Esempio n. 3
0
 private static void info(I2PAppContext ctx, String msg) {
   log(ctx, Log.INFO, msg, null);
 }
Esempio n. 4
0
 private static void info(String msg) {
   log(I2PAppContext.getGlobalContext(), Log.INFO, msg, null);
 }