예제 #1
0
파일: Logging.cs 프로젝트: whiker/rDSN
 public static void dassert(bool condition, string fmt, object arg0, object arg1, object arg2)
 {
     if (!condition)
     {
         dlog(dsn_log_level_t.LOG_LEVEL_FATAL, fmt, arg0, arg1, arg2);
         Native.dsn_coredump();
     }
 }