From 70e44318eb5cd57c493481744cea83bfc4154235 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 28 Mar 1995 07:52:35 +0000 Subject: [PATCH] Bug fix: Bad log masks. --- include/gw-log.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/gw-log.h b/include/gw-log.h index 7e78f2f..7cf1afa 100644 --- a/include/gw-log.h +++ b/include/gw-log.h @@ -4,7 +4,10 @@ * Europagate, 1994-1995. * * $Log: gw-log.h,v $ - * Revision 1.4 1995/03/27 12:50:40 adam + * Revision 1.5 1995/03/28 07:52:35 adam + * Bug fix: Bad log masks. + * + * Revision 1.4 1995/03/27 12:50:40 adam * New level: GW_LOG_ERRNO. * * Revision 1.3 1995/02/23 08:32:11 adam @@ -28,12 +31,12 @@ #define GW_LOG_ERRNO 0x10 /* All debug levels */ -#define GW_LOG_DEBUG 0xfff0 +#define GW_LOG_DEBUG 0xffe0 /* Individual debug levels, x sould be in range 0-10 */ #define GW_LOG_DEBUGN(x) (0x20<<(x)) /* All levels on / All levels except debugging */ -#define GW_LOG_ALL 0xffff +#define GW_LOG_ALL 0xffef #define GW_LOG_DEFAULT 0x0f void gw_log_init (const char *app_name); -- 1.7.10.4