From fec44c3e820c8a4c428faaf5bf1698e7b8727888 Mon Sep 17 00:00:00 2001 From: Vladimir <47463683+Wend4r@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:16:38 +0300 Subject: [PATCH] Update `LoggingSeverity_t` enumeration (#171) --- public/tier0/logging.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/public/tier0/logging.h b/public/tier0/logging.h index 977d3636..da4978cc 100644 --- a/public/tier0/logging.h +++ b/public/tier0/logging.h @@ -143,31 +143,36 @@ typedef int LoggingTagHandle_t; //----------------------------------------------------------------------------- enum LoggingSeverity_t { + //----------------------------------------------------------------------------- + // A debug message. + //----------------------------------------------------------------------------- + LS_DETAILED = 1, + //----------------------------------------------------------------------------- // An informative logging message. //----------------------------------------------------------------------------- - LS_MESSAGE = 1, + LS_MESSAGE = 2, //----------------------------------------------------------------------------- // A warning, typically non-fatal //----------------------------------------------------------------------------- - LS_WARNING = 2, + LS_WARNING = 3, //----------------------------------------------------------------------------- // A message caused by an Assert**() operation. //----------------------------------------------------------------------------- - LS_ASSERT = 3, + LS_ASSERT = 4, //----------------------------------------------------------------------------- // An error, typically fatal/unrecoverable. //----------------------------------------------------------------------------- - LS_ERROR = 4, + LS_ERROR = 5, //----------------------------------------------------------------------------- // A placeholder level, higher than any legal value. // Not a real severity value! //----------------------------------------------------------------------------- - LS_HIGHEST_SEVERITY = 5, + LS_HIGHEST_SEVERITY = 6, }; enum LoggingVerbosity_t