summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-02-25 21:20:02 +0000
committerChris Wilson <chris+github@qwirx.com>2015-02-25 21:20:02 +0000
commitaade9fba3086f37fa382a6f2e0f25cd6b0776e88 (patch)
tree41658c6f2248a93a1c4ec52829b0cb0468f97b5a /lib
parentcc9a156387fc300b0086e85b370ea1ac599ef431 (diff)
Fix BOX_SYSLOG macro to provide a category.
Diffstat (limited to 'lib')
-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)