diff --git a/src/module/console.cpp b/src/module/console.cpp index 8d5dccb..1349884 100644 --- a/src/module/console.cpp +++ b/src/module/console.cpp @@ -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