Commit 1c21b1e6 authored by Dominik Charousset's avatar Dominik Charousset

Remove debug output

parent e7052c72
...@@ -47,13 +47,11 @@ std::atomic<long> s_pending_on_exits; ...@@ -47,13 +47,11 @@ std::atomic<long> s_pending_on_exits;
class testee : public event_based_actor { class testee : public event_based_actor {
public: public:
testee(actor_config& cfg) : event_based_actor(cfg) { testee(actor_config& cfg) : event_based_actor(cfg) {
printf("%s %d\n", __FILE__, __LINE__);
++s_testees; ++s_testees;
++s_pending_on_exits; ++s_pending_on_exits;
} }
~testee() override { ~testee() override {
printf("%s %d\n", __FILE__, __LINE__);
--s_testees; --s_testees;
} }
...@@ -62,7 +60,6 @@ printf("%s %d\n", __FILE__, __LINE__); ...@@ -62,7 +60,6 @@ printf("%s %d\n", __FILE__, __LINE__);
} }
void on_exit() override { void on_exit() override {
printf("%s %d\n", __FILE__, __LINE__);
--s_pending_on_exits; --s_pending_on_exits;
} }
......
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