Skip to content

Commit

Permalink
better formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic committed Feb 22, 2024
1 parent 8b2a58b commit d0371ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk-recorder/source.cc
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ void Source::enable_detected_recorders() {
if (!recorder->is_enabled()) {
recorder->set_enabled(true);

BOOST_LOG_TRIVIAL(info) << "\t[ " << recorder->get_num() << " ] " << recorder->get_type_string() << "\tEnabled - Freq: " << format_freq(recorder->get_freq()) << "\t Detected Signal: " << rssi << "dBM (Threshold: " << threshold << "dBM)";
BOOST_LOG_TRIVIAL(info) << "\t[ " << recorder->get_num() << " ] " << recorder->get_type_string() << "\tEnabled - Freq: " << format_freq(recorder->get_freq()) << "\t Detected Signal: " << floor(rssi) << "dBM (Threshold: " << floor(threshold) << "dBM)";
}
}
}
Expand Down

0 comments on commit d0371ed

Please sign in to comment.