mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-15 18:16:44 +02:00
Reduce log level
This commit is contained in:
parent
888e19a8a4
commit
7c1c257501
1 changed files with 2 additions and 1 deletions
|
@ -60,8 +60,9 @@ void PipeStream::do_connect()
|
||||||
#if !defined(MACOS)
|
#if !defined(MACOS)
|
||||||
pipe_size = fcntl(fd, F_GETPIPE_SZ);
|
pipe_size = fcntl(fd, F_GETPIPE_SZ);
|
||||||
#endif
|
#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<boost::asio::posix::stream_descriptor>(ioc_, fd);
|
stream_ = std::make_unique<boost::asio::posix::stream_descriptor>(ioc_, fd);
|
||||||
on_connect();
|
on_connect();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace streamreader
|
} // namespace streamreader
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue