From bf327be7f5e7139eeacee60f3f5bd4f4d7fcbee5 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Wed, 24 Aug 2016 03:04:55 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca81ee68..d027abbc 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ void syslog_example() #ifdef SPDLOG_ENABLE_SYSLOG std::string ident = "spdlog-example"; auto syslog_logger = spd::syslog_logger("syslog", ident, LOG_PID); - syslog_logger->warn("This is warning that will end up in syslog. This is Linux only!"); + syslog_logger->warn("This is warning that will end up in syslog.."); #endif }