示例#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();
     }
 }