From fcb1df34daf21ebbae4e68b66b933f2b55b8f860 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Mon, 21 May 2018 16:14:59 -0700 Subject: [PATCH] ircd::log: Re-number log levels. --- include/ircd/logger.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/ircd/logger.h b/include/ircd/logger.h index e26ebbec2..dea72de08 100644 --- a/include/ircd/logger.h +++ b/include/ircd/logger.h @@ -70,11 +70,11 @@ enum ircd::log::facility { CRITICAL = 0, ///< Catastrophic/unrecoverable; program is in a compromised state. ERROR = 1, ///< Things that shouldn't happen; user impacted and should know. - DERROR = 2, ///< An error but only worthy of developers in debug mode. - WARNING = 3, ///< Non-impacting undesirable behavior user should know about. - DWARNING = 4, ///< A warning but only for developers in debug mode. - NOTICE = 5, ///< An infrequent important message with neutral or positive news. - INFO = 6, ///< A more frequent message with good news. + WARNING = 2, ///< Non-impacting undesirable behavior user should know about. + NOTICE = 3, ///< An infrequent important message with neutral or positive news. + INFO = 4, ///< A more frequent message with good news. + DERROR = 5, ///< An error but only worthy of developers in debug mode. + DWARNING = 6, ///< A warning but only for developers in debug mode. DEBUG = 7, ///< Maximum verbosity for developers. _NUM_ };