Commit a3a8f107 authored by gabime's avatar gabime

revert syslog

parent c2fc8edf
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment