summaryrefslogtreecommitdiff
path: root/utils/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/log.h')
-rw-r--r--utils/log.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/utils/log.h b/utils/log.h
index b49f439db..ed953f37e 100644
--- a/utils/log.h
+++ b/utils/log.h
@@ -64,11 +64,13 @@ extern void nslog_log(const char *format, ...);
# endif
#define LOG(x) \
- do { \
- nslog_log("%s " __FILE__ " %s %i: ", \
- nslog_gettime(), LOG_FN, LOG_LN); \
- nslog_log x; \
- nslog_log("\n"); \
+ do { \
+ if (verbose_log) { \
+ nslog_log("%s " __FILE__ " %s %i: ", \
+ nslog_gettime(), LOG_FN, LOG_LN); \
+ nslog_log x; \
+ nslog_log("\n"); \
+ } \
} while(0)
#endif