diff options
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c index 5fe03d7..417b0cc 100644 --- a/src/utils.c +++ b/src/utils.c @@ -382,6 +382,11 @@ void msg(unsigned type, char *fmt, ...) { return; } + if (!globals.verbose && type & OMC_MSG_RESTRICT) { + // Verbose mode is not active + return; + } + memset(header, 0, sizeof(header)); memset(status, 0, sizeof(status)); |