diff --git a/FlippR-Driver/src/input/Detector.cpp b/FlippR-Driver/src/input/Detector.cpp index 4148064..ee84b9d 100644 --- a/FlippR-Driver/src/input/Detector.cpp +++ b/FlippR-Driver/src/input/Detector.cpp @@ -43,7 +43,7 @@ void Detector::detect() try { auto event = events.at(address); - CLOG(DEBUG, INPUT_LOGGER) << "Found event " << event->name << "(" << event->address << ")."; + CLOG(INFO, INPUT_LOGGER) << "Found event " << event->name << "(" << event->address << ")."; event_notifier->distribute_event(event); } catch(std::out_of_range& e) @@ -60,7 +60,7 @@ bool Detector::check_inputs(char& address) { if(input_gpio_interface->read_data(pin)) { - CLOG(DEBUG, INPUT_LOGGER) << "Pin " << pin << " is triggered."; + CLOG(INFO, INPUT_LOGGER) << "Pin " << pin << " is triggered."; address = pin; return true; }