Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/simplestream/simplestream.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ class Simple_Stream : public Plugin_Api {
// Get the source from the most recent transmission
auto transmissions = call->get_transmissions();
call_src = transmissions.back().source;
BOOST_LOG_TRIVIAL(info) << "using source " << call_src << " from most recent transmission";
BOOST_LOG_TRIVIAL(debug) << "using source " << call_src << " from most recent transmission";
}
else{
BOOST_LOG_TRIVIAL(info) << "no source found for call - leaving src as -1";
BOOST_LOG_TRIVIAL(debug) << "no source found for call - leaving src as -1";
}
}

Expand Down
Loading