This commit is contained in:
Diavolo 2022-12-30 11:31:03 +01:00
parent 7d5d402144
commit 3345e2d4a4
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5

View File

@ -18,9 +18,9 @@ public:
void post_start() override
{
scheduler::loop(std::bind(&log_messages, this), scheduler::pipeline::main);
scheduler::loop(std::bind(&console::log_messages, this), scheduler::pipeline::main);
this->console_runner_ = std::thread(std::bind(&runner, this));
this->console_runner_ = std::thread(std::bind(&console::runner, this));
}
void pre_destroy() override