summaryrefslogtreecommitdiffstats
path: root/src/Patchage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Patchage.cpp')
-rw-r--r--src/Patchage.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index f3dfc2e..335496d 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -518,6 +518,7 @@ void
Patchage::refresh()
{
auto sink = [this](const PatchageEvent& event) {
+ _log.info(event_to_string(event));
handle_event(*this, event);
};
@@ -595,6 +596,7 @@ Patchage::process_events()
std::lock_guard<std::mutex> lock{_events_mutex};
while (!_driver_events.empty()) {
+ _log.info(event_to_string(_driver_events.front()));
handle_event(*this, _driver_events.front());
_driver_events.pop();
}