Commit f4d717eb authored by Dominik Charousset's avatar Dominik Charousset

Add trace logging to remove_stream_manager

parent ab0482f0
...@@ -925,6 +925,7 @@ bool scheduled_actor::add_stream_manager(stream_slots id, ...@@ -925,6 +925,7 @@ bool scheduled_actor::add_stream_manager(stream_slots id,
} }
bool scheduled_actor::remove_stream_manager(stream_slots id) { bool scheduled_actor::remove_stream_manager(stream_slots id) {
CAF_LOG_TRACE(CAF_ARG(id));
if (stream_managers_.erase(id) == 0) if (stream_managers_.erase(id) == 0)
return false; return false;
if (stream_managers_.empty()) if (stream_managers_.empty())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment