diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2003-12-15 22:54:14 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2003-12-15 22:54:14 +0000 |
commit | 1476c336de9dd9d09dd6f875127f273234b93c6d (patch) | |
tree | 5af2f512e0b6a0b10b660945dee68b71bb1521f1 /hw/xwin/winmsg.c | |
parent | 0e22b9ade0e97da327301967ff4a8667ae9aa374 (diff) |
Bind some messages to a loglevel other than 0. The default loglevel is 4,
so this change does not affect the default output, but -logverbose 0
will be less noisy if completely finished
Diffstat (limited to 'hw/xwin/winmsg.c')
-rw-r--r-- | hw/xwin/winmsg.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/hw/xwin/winmsg.c b/hw/xwin/winmsg.c index ce8ac4199..4e98f6d8b 100644 --- a/hw/xwin/winmsg.c +++ b/hw/xwin/winmsg.c @@ -33,14 +33,8 @@ #include "winmsg.h" #include <stdarg.h> -#ifndef VERBOSE_LEVEL -#define VERBOSE_LEVEL 4 -#endif - - void winVMsg (int, MessageType, int verb, const char *, va_list); - void winVMsg (int scrnIndex, MessageType type, int verb, const char *format, va_list ap) @@ -64,7 +58,7 @@ winMsg (MessageType type, const char *format, ...) { va_list ap; va_start (ap, format); - LogVMessageVerb(type, 0, format, ap); + LogVMessageVerb(type, 1, format, ap); va_end (ap); } |