Commit 4bdeecde authored by Dominik Charousset's avatar Dominik Charousset

Remove debug output

parent 6de9effb
...@@ -163,7 +163,6 @@ public: ...@@ -163,7 +163,6 @@ public:
[=](spawn_atom atm, node_id& nid, std::string& str, message& msg) [=](spawn_atom atm, node_id& nid, std::string& str, message& msg)
-> delegated<strong_actor_ptr, mpi_set> { -> delegated<strong_actor_ptr, mpi_set> {
CAF_LOG_TRACE(""); CAF_LOG_TRACE("");
printf("%s %d -- %s\n", __FILE__, __LINE__, to_string(current_mailbox_element()->content()).c_str());
delegate(broker_, forward_atom::value, nid, atom("SpawnServ"), delegate(broker_, forward_atom::value, nid, atom("SpawnServ"),
make_message(atm, std::move(str), std::move(msg))); make_message(atm, std::move(str), std::move(msg)));
//delegate(broker_, atm, std::move(nid), std::move(str), std::move(msg)); //delegate(broker_, atm, std::move(nid), std::move(str), std::move(msg));
......
...@@ -100,7 +100,6 @@ void run_server(int argc, char** argv) { ...@@ -100,7 +100,6 @@ void run_server(int argc, char** argv) {
CAF_EXP_THROW(port, system.middleman().open(0)); CAF_EXP_THROW(port, system.middleman().open(0));
std::thread child{[=] { run_client(argc, argv, port); }}; std::thread child{[=] { run_client(argc, argv, port); }};
child.join(); child.join();
printf("%s %d -- %d\n", __FILE__, __LINE__, (int) system.registry().running());
} }
} // namespace <anonymous> } // namespace <anonymous>
......
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