Exemple #1
0
 // ! debug information output
 private static void debugOutput(String _debug) {
   if (sm_mainApp != null) {
     sm_mainApp.SetErrorString(_debug);
   }
 }
Exemple #2
0
 // ! exception output
 private static void exceptionOutput(String _tag, Exception e) {
   if (sm_mainApp != null) {
     sm_mainApp.SetErrorString(_tag, e);
   }
 }