Skip to content

Commit

Permalink
Update config.cc (#945)
Browse files Browse the repository at this point in the history
Added missing : and space for readability in logs.
  • Loading branch information
penguinzephyr authored May 22, 2024
1 parent 8b38fdb commit 4e1782e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trunk-recorder/config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ bool load_config(string config_file, Config &config, gr::top_block_sptr &tb, std
config.record_uu_v_calls = data.value("recordUUVCalls", true);
BOOST_LOG_TRIVIAL(info) << "Record Unit to Unit Voice Calls: " << config.record_uu_v_calls;
config.new_call_from_update = data.value("newCallFromUpdate", true);
BOOST_LOG_TRIVIAL(info) << "New Call from UPDATE Messages" << config.new_call_from_update;
BOOST_LOG_TRIVIAL(info) << "New Call from UPDATE Messages: " << config.new_call_from_update;
std::string frequency_format_string = data.value("frequencyFormat", "mhz");

if (boost::iequals(frequency_format_string, "mhz")) {
Expand Down Expand Up @@ -634,4 +634,4 @@ bool load_config(string config_file, Config &config, gr::top_block_sptr &tb, std
}
BOOST_LOG_TRIVIAL(info) << "\n\n";
return true;
}
}

0 comments on commit 4e1782e

Please sign in to comment.