Commit 6d860687 authored by Dominik Charousset's avatar Dominik Charousset

fixed log output in default protocol

parent a0d7103d
......@@ -170,7 +170,7 @@ struct remote_actor_result { remote_actor_result* next; actor_ptr value; };
actor_ptr default_protocol::remote_actor(io_stream_ptr_pair io,
variant_args args ) {
CPPA_LOG_TRACE("io = {" << io.first.get() << ", " << io.second.get() << "}, "
<< " << args.size() = " << args.size());
<< "args.size() = " << args.size());
CPPA_REQUIRE(args.size() == 0);
static_cast<void>(args); // keep compiler happy when compiling w/o debug
auto pinf = process_information::get();
......
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