Commit bba2acce authored by Dominik Charousset's avatar Dominik Charousset

downgraded double KILL_PROXY msg warning to info

this actually has no effect on client code, but is merely a minor
libcppa issue, so it souldn't be a warning in the first place;
closes #126
parent 3ff4dd8b
......@@ -158,7 +158,7 @@ void remote_actor_proxy::enqueue(msg_hdr_cref hdr, any_tuple msg,
"KILL_PROXY " << to_string(_this->address())
<< " with exit reason " << reason);
if (_this->m_pending_requests.closed()) {
CPPA_LOG_WARNING("received KILL_PROXY twice");
CPPA_LOG_INFO("received KILL_PROXY twice");
}
else {
_this->cleanup(reason);
......
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