Unverified Commit 12bbef30 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Update README.md

parent caff7296
...@@ -240,7 +240,7 @@ void err_handler_example() ...@@ -240,7 +240,7 @@ void err_handler_example()
void syslog_example() void syslog_example()
{ {
std::string ident = "spdlog-example"; std::string ident = "spdlog-example";
auto syslog_logger = spdlog::syslog_logger("syslog", ident, LOG_PID); auto syslog_logger = spdlog::syslog_logger_mt("syslog", ident, LOG_PID);
syslog_logger->warn("This is warning that will end up in syslog."); syslog_logger->warn("This is warning that will end up in syslog.");
} }
``` ```
......
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