Browse Source

increase default log level for debug builds

pull/23/head
Richard Fuchs 12 years ago
parent
commit
8f4e3451f4
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      daemon/log.c

+ 5
- 0
daemon/log.c View File

@ -9,7 +9,12 @@
struct log_info __thread log_info;
#ifndef __DEBUG
volatile gint log_level = LOG_INFO;
#else
volatile gint log_level = LOG_DEBUG;
#endif
#ifndef MAX_LOG_LINE_LENGTH
#define MAX_LOG_LINE_LENGTH 500
#endif


Loading…
Cancel
Save