Unverified Commit 01e8f098 authored by Dominik Charousset's avatar Dominik Charousset Committed by GitHub

Integrate review feedback

Co-authored-by: default avatarNoir <josephnoir@users.noreply.github.com>
parent 7deb370f
...@@ -648,9 +648,9 @@ void logger::start() { ...@@ -648,9 +648,9 @@ void logger::start() {
auto f = [this](auto guard) { auto f = [this](auto guard) {
CAF_IGNORE_UNUSED(guard); CAF_IGNORE_UNUSED(guard);
detail::set_thread_name("caf.logger"); detail::set_thread_name("caf.logger");
this->system_.thread_started(); system_.thread_started();
this->run(); run();
this->system_.thread_terminates(); system_.thread_terminates();
}; };
thread_ = std::thread{f, detail::global_meta_objects_guard()}; thread_ = std::thread{f, detail::global_meta_objects_guard()};
} }
......
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