Commit b9f677ee authored by Dominik Charousset's avatar Dominik Charousset

Fix compilation with logging enabled

parent 29ab81f9
...@@ -144,8 +144,7 @@ expected<node_id> middleman::connect(std::string host, uint16_t port) { ...@@ -144,8 +144,7 @@ expected<node_id> middleman::connect(std::string host, uint16_t port) {
expected<uint16_t> middleman::publish(const strong_actor_ptr& whom, expected<uint16_t> middleman::publish(const strong_actor_ptr& whom,
std::set<std::string> sigs, uint16_t port, std::set<std::string> sigs, uint16_t port,
const char* cstr, bool ru) { const char* cstr, bool ru) {
CAF_LOG_TRACE(CAF_ARG(whom) << CAF_ARG(sigs) << CAF_ARG(port) CAF_LOG_TRACE(CAF_ARG(whom) << CAF_ARG(sigs) << CAF_ARG(port));
<< CAF_ARG(in) << CAF_ARG(ru));
if (! whom) if (! whom)
return sec::cannot_publish_invalid_actor; return sec::cannot_publish_invalid_actor;
std::string in; std::string in;
......
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