| commit | c5c744a3b5a6e0d1f4826fabb31ffab2ec0170f3 | [log] [tgz] |
|---|---|---|
| author | Juan Cespedes <juan.cespedes@imdea.org> | Thu Jul 23 18:22:58 2009 +0200 |
| committer | Juan Cespedes <juan.cespedes@imdea.org> | Thu Jul 23 18:22:58 2009 +0200 |
| tree | 2db1d42a40d7823e1ca1b07f5dcb7e46359bd716 | |
| parent | 427b7811598f905b583ac86b35c72228fd415476 [diff] [blame] |
Clarified debug levels (try --debug=help)
diff --git a/debug.h b/debug.h index 6b30e6a..653da84 100644 --- a/debug.h +++ b/debug.h
@@ -3,9 +3,9 @@ /* debug levels: */ enum { - DEBUG_EVENT = 0x10, - DEBUG_PROCESS = 0x20, - DEBUG_FUNCTION = 0x40 + DEBUG_EVENT = 010, + DEBUG_PROCESS = 020, + DEBUG_FUNCTION = 040 }; void debug_(int level, const char *file, int line,