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