From 7c1c257501f153b7a2a959c31ecfef1a8b0b57a2 Mon Sep 17 00:00:00 2001 From: badaix Date: Sun, 27 Sep 2020 11:06:15 +0200 Subject: [PATCH] Reduce log level --- server/streamreader/pipe_stream.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/streamreader/pipe_stream.cpp b/server/streamreader/pipe_stream.cpp index 11364fdc..8db19159 100644 --- a/server/streamreader/pipe_stream.cpp +++ b/server/streamreader/pipe_stream.cpp @@ -60,8 +60,9 @@ void PipeStream::do_connect() #if !defined(MACOS) pipe_size = fcntl(fd, F_GETPIPE_SZ); #endif - LOG(INFO, LOG_TAG) << "Stream: " << name_ << ", connect to pipe: " << uri_.path << ", fd: " << fd << ", pipe size: " << pipe_size << "\n"; + LOG(TRACE, LOG_TAG) << "Stream: " << name_ << ", connect to pipe: " << uri_.path << ", fd: " << fd << ", pipe size: " << pipe_size << "\n"; stream_ = std::make_unique(ioc_, fd); on_connect(); } + } // namespace streamreader