From aade9fba3086f37fa382a6f2e0f25cd6b0776e88 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 25 Feb 2015 21:20:02 +0000 Subject: Fix BOX_SYSLOG macro to provide a category. --- lib/common/Logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3