Less debug logging

This commit is contained in:
badaix 2020-01-28 00:06:54 +01:00
parent a9b042f78e
commit 3a7f1573f2
2 changed files with 5 additions and 5 deletions

View file

@ -103,7 +103,7 @@ void AsioStream<ReadStream>::check_state()
{
uint64_t last_read = bytes_read_;
wait(state_timer_, std::chrono::milliseconds(500 + chunk_ms_), [this, last_read] {
LOG(DEBUG, "AsioStream") << "check state last: " << last_read << ", read: " << bytes_read_ << "\n";
LOG(TRACE, "AsioStream") << "check state last: " << last_read << ", read: " << bytes_read_ << "\n";
if (bytes_read_ != last_read)
setState(ReaderState::kPlaying);
else