summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/settings.h8
-rw-r--r--src/daemon/settings_private.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/include/settings.h b/include/settings.h
index 16d3a7a..68360c0 100644
--- a/include/settings.h
+++ b/include/settings.h
@@ -24,10 +24,10 @@
enum verbosity {
SILENT = 0,
- DEBUG = 2,
- WARN = 2,
- ERR = 2,
- ALL = 3
+ ERR = 1,
+ WARN,
+ DEBUG,
+ ALL
};
void settings_init(void);
diff --git a/src/daemon/settings_private.h b/src/daemon/settings_private.h
index 133cf51..ee49145 100644
--- a/src/daemon/settings_private.h
+++ b/src/daemon/settings_private.h
@@ -23,7 +23,7 @@
#define USURPATION_SETTINGS_PRIVATE_H
#ifndef USURP_VERBOSITY
- #define USURP_VERBOSITY 1
+ #define USURP_VERBOSITY ERR
#endif
static const unsigned int flag_daemonize = 1 << 0; /* 1st bit */