From ffa85cda1a9e3f3b55bcba1f825b83a814b16de2 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Fri, 13 Mar 2020 01:36:33 +0200 Subject: [PATCH] Update tcp_sink.h --- include/spdlog/sinks/tcp_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/tcp_sink.h b/include/spdlog/sinks/tcp_sink.h index 40df5a71..2884d154 100644 --- a/include/spdlog/sinks/tcp_sink.h +++ b/include/spdlog/sinks/tcp_sink.h @@ -31,7 +31,7 @@ struct tcp_sink_config { std::string server_host; int server_port; - bool lazy_connect = false; // connect on first log call instead of on construction + bool lazy_connect = false; // if true connect on first log call instead of on construction tcp_sink_config(std::string host, int port) : server_host{std::move(host)}