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