1

static logger

This commit is contained in:
2022-07-23 00:20:44 +02:00
parent bd95c02a08
commit e143733b00
5 changed files with 11 additions and 12 deletions

View File

@ -6,7 +6,7 @@ void KeyEventListener::trigger(char c) {
}
char KeyEventListener::waitForKeyEvent() const {
Logger::instance() << DEBUG << "KEvLis:: Thread with id: " << tid << " waiting for key event" << endl;
logger << DEBUG << "KEvLis:: Thread with id: " << tid << " waiting for key event" << endl;
scheduler.block();
return this->lastChar; // This is only executed after thread is woken up by manager
}