Update README.md

This commit is contained in:
Gabi Melman
2018-08-06 22:19:16 +03:00
committed by GitHub
parent caff7296b1
commit 12bbef308b

View File

@@ -240,7 +240,7 @@ void err_handler_example()
void syslog_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.");
}
```