Commit 08204930 authored by Dominik Charousset's avatar Dominik Charousset

Remove obsolete INIT events

parent e0e56d69
...@@ -471,10 +471,6 @@ inline caf::actor_id caf_set_aid_dummy() { return 0; } ...@@ -471,10 +471,6 @@ inline caf::actor_id caf_set_aid_dummy() { return 0; }
<< "; NODE =" << ref.node() \ << "; NODE =" << ref.node() \
<< "; GROUPS =" << logger::joined_groups_of(ref)) << "; GROUPS =" << logger::joined_groups_of(ref))
#define CAF_LOG_INIT_EVENT(aName, aHide) \
CAF_LOG_IMPL(CAF_LOG_FLOW_COMPONENT, CAF_LOG_LEVEL_DEBUG, \
"INIT ; NAME =" << aName << "; HIDDEN =" << aHide)
#define CAF_LOG_SEND_EVENT(ptr) \ #define CAF_LOG_SEND_EVENT(ptr) \
CAF_LOG_IMPL(CAF_LOG_FLOW_COMPONENT, CAF_LOG_LEVEL_DEBUG, \ CAF_LOG_IMPL(CAF_LOG_FLOW_COMPONENT, CAF_LOG_LEVEL_DEBUG, \
"SEND ; TO =" \ "SEND ; TO =" \
......
...@@ -174,7 +174,7 @@ error local_actor::load_state(deserializer&, const unsigned int) { ...@@ -174,7 +174,7 @@ error local_actor::load_state(deserializer&, const unsigned int) {
} }
void local_actor::initialize() { void local_actor::initialize() {
CAF_LOG_INIT_EVENT(name(), !getf(is_registered_flag)); // nop
} }
bool local_actor::cleanup(error&& fail_state, execution_unit* host) { bool local_actor::cleanup(error&& fail_state, execution_unit* host) {
......
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