Exemplo n.º 1
0
 public static void info(String message, Throwable error) {
   if (log_level.value() <= Log.Level.INFO.value()) {
     error.printStackTrace();
     Dialog.show("Info", message + "\n", "OK", "Cancel");
   }
 }
Exemplo n.º 2
0
 public static void info(String message) {
   if (log_level.value() <= Log.Level.INFO.value()) {
     Dialog.show("Info", message + "\n", "OK", "Cancel");
   }
 }