summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/common/Logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/Logging.h b/lib/common/Logging.h
index 9fd37e28..24a773db 100644
--- a/lib/common/Logging.h
+++ b/lib/common/Logging.h
@@ -43,7 +43,7 @@
std::ostringstream _box_log_line; \
_box_log_line << stuff; \
Logging::LogToSyslog(level, __FILE__, __LINE__, __FUNCTION__, \
- _box_log_line.str()); \
+ Logging::UNCATEGORISED, _box_log_line.str()); \
}
#define BOX_FATAL(stuff) BOX_LOG(Log::FATAL, stuff)