revert syslog

This commit is contained in:
gabime 2014-11-21 00:46:57 +02:00
parent c2fc8edfed
commit a3a8f107a4

View File

@ -65,11 +65,9 @@ namespace spdlog
syslog_sink(const syslog_sink&) = delete;
syslog_sink& operator=(const syslog_sink&) = delete;
void sink_it(const char* data, size_t size) override
void log(const details::log_msg &msg) override
{
std::string s(data, size);
//syslog(syslog_prio_from_level(msg), "%s", s.c_str());
syslog(LOG_INFO, "%s", s.c_str());
syslog(syslog_prio_from_level(msg), "%s", msg.formatted.str().c_str());
};
protected: