fix syslog bug

This commit is contained in:
gabime
2014-12-18 21:38:37 +02:00
parent 3b61f50cbf
commit 689960f27c
2 changed files with 4 additions and 4 deletions

View File

@@ -58,8 +58,6 @@ public:
_priorities[static_cast<int>(level::CRITICAL)] = LOG_CRIT;
_priorities[static_cast<int>(level::ALERT)] = LOG_ALERT;
_priorities[static_cast<int>(level::EMERG)] = LOG_EMERG;
_priorities[static_cast<int>(level::ALWAYS)] = LOG_INFO;
_priorities[static_cast<int>(level::OFF)] = LOG_INFO;
::openlog(ident.c_str(), option, syslog_facility_from_name(facility));