From 04df7fcc6d0f75bdf14fd87bcac9d609188e8675 Mon Sep 17 00:00:00 2001 From: Przemyslaw Pawelczyk Date: Sun, 18 Feb 2018 22:51:17 +0100 Subject: utils.h: Introduce new verbosity level: MSG_WARNING. --- src/utils.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/utils.h') diff --git a/src/utils.h b/src/utils.h index 328769d..586a7f3 100644 --- a/src/utils.h +++ b/src/utils.h @@ -40,8 +40,9 @@ void adjust_verbosity(int adj); #define MSG_DEBUG 1 #define MSG_QUIET -1 /* Verbosity levels using stderr */ -#define MSG_ERROR -2 -#define MSG_CRITICAL -3 +#define MSG_WARNING -2 +#define MSG_ERROR -3 +#define MSG_CRITICAL -4 /* Prints messages to console according to the current verbosity */ int msg(int level, const char *fmt, ...); -- cgit v1.2.1