Example #1
0
 void log_write(int level, const char *fmt, ...) {
     if (!g_logger.Enabled(level)) return;
     va_list ap;
     va_start(ap, fmt);
     g_logger.Logv(level, fmt, ap);
     va_end(ap);
 }