Bug fix: Bad log masks.
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 28 Mar 1995 07:52:35 +0000 (07:52 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 28 Mar 1995 07:52:35 +0000 (07:52 +0000)
include/gw-log.h

index 7e78f2f..7cf1afa 100644 (file)
@@ -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
 #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);