added logging

This commit is contained in:
Neeflix
2018-05-31 20:25:06 +02:00
parent 4c593c9d29
commit b9328855c8
6 changed files with 21 additions and 2 deletions

View File

@@ -18,6 +18,8 @@ EventNotifier::EventNotifier()
: is_running(true)
{
notify_thread = std::thread(&EventNotifier::notify, this);
CLOG(INFO, INPUT_LOGGER) << "Created EventNotifier and started thread";
}
EventNotifier::~EventNotifier()