Skip to content

Commit

Permalink
Move channel speeds into verbose log.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed May 17, 2024
1 parent a6b61f6 commit caf8d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sessions/session_outbound.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ void session_outbound::do_performance(object_key channel, uint64_t speed,
const auto slow = (mean - speed) > (allowed_deviation_ * sdev);

// Only speed < mean channels are logged.
LOGS("Below average channel (" << count << ") rate ("
LOGV("Below average channel (" << count << ") rate ("
<< to_kilobits_per_second(rate) << ") mean ("
<< to_kilobits_per_second(mean) << ") sdev ("
<< to_kilobits_per_second(sdev) << ") Kbps [" << (slow ? "*" : "")
Expand Down

0 comments on commit caf8d2c

Please sign in to comment.