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

@@ -19,6 +19,8 @@ Detector::Detector(InputGPIOInterface* input_gpio_interface, std::map<char, Even
input_gpio_interface(input_gpio_interface), events(events), is_running(true), event_notifier(event_notifier)
{
detect_thread = std::thread(&Detector::detect, this);
CLOG(WARNING, INPUT_LOGGER) << "Created Detector";
}
Detector::~Detector()