X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fsysdep_decls.h;h=8a16f7305beb4915dfea149328c4c428a234118e;hp=c45c67f2de77fdd4f07bfebbf10405bddc3efed2;hb=85a7e6b84462d72e14a287d4bbdbd3e41c97e76d;hpb=1bc9ac3216ae35bb1470838e8613ddf544923e87 diff --git a/citadel/sysdep_decls.h b/citadel/sysdep_decls.h index c45c67f2d..8a16f7305 100644 --- a/citadel/sysdep_decls.h +++ b/citadel/sysdep_decls.h @@ -40,27 +40,6 @@ #define SIZE_T_FMT "%ld" #endif - -/* Logging levels - correspond to syslog(3) */ -enum LogLevel { - /* When about to exit the server for an unrecoverable error */ - CTDL_EMERG, /* system is unusable */ - /* Manual intervention is required to avoid an abnormal exit */ - CTDL_ALERT, /* action must be taken immediately */ - /* The server can continue to run with degraded functionality */ - CTDL_CRIT, /* critical conditions */ - /* An error occurs but the server continues to run normally */ - CTDL_ERR, /* error conditions */ - /* An abnormal condition was detected; server will continue normally */ - CTDL_WARNING, /* warning conditions */ - /* Normal messages (login/out, activity, etc.) */ - CTDL_NOTICE, /* normal but significant condition */ - /* Unimportant progress messages, etc. */ - CTDL_INFO, /* informational */ - /* Debugging messages */ - CTDL_DEBUG /* debug-level messages */ -}; - #ifdef __GNUC__ void cprintf (const char *format, ...) __attribute__((__format__(__printf__,1,2))); #else