]> granicus.if.org Git - neomutt/commitdiff
debug: add notify level
authorRichard Russon <rich@flatcap.org>
Mon, 20 May 2019 14:29:24 +0000 (14:29 +0000)
committerRichard Russon <rich@flatcap.org>
Mon, 3 Jun 2019 10:54:19 +0000 (11:54 +0100)
mutt/logging.c
mutt/logging.h

index e7309ad5820fd60c93507746297baca649b328de..350aa7d4cd370805e3ae0ac4118dbe26a2bc7ac8 100644 (file)
@@ -42,7 +42,7 @@
 #include "queue.h"
 #include "string2.h"
 
-const char *LevelAbbr = "PEWM12345"; /**< Abbreviations of logging level names */
+const char *LevelAbbr = "PEWM12345N"; /**< Abbreviations of logging level names */
 
 /**
  * MuttLogger - The log dispatcher
@@ -486,6 +486,7 @@ int log_disp_terminal(time_t stamp, const char *file, int line,
       case LL_DEBUG3:
       case LL_DEBUG4:
       case LL_DEBUG5:
+      case LL_NOTIFY:
         break;
     }
   }
index 884f4be342b58870c6e6ebf5e8b60b4161e2892a..ce7562da18fb2b5876fee91ad6b629f0d2015451 100644 (file)
@@ -58,6 +58,7 @@ enum LogLevel
   LL_DEBUG3  =  3, ///< Log at debug level 3
   LL_DEBUG4  =  4, ///< Log at debug level 4
   LL_DEBUG5  =  5, ///< Log at debug level 5
+  LL_NOTIFY  =  6, ///< Log of notifications
 
   LL_MAX,
 };