summaryrefslogtreecommitdiffstats
path: root/src/Patchage.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-28 23:30:09 +0100
committerDavid Robillard <d@drobilla.net>2020-11-28 23:47:23 +0100
commit2755425424cd4df87cc7a34bc02b5dedd0a1e21d (patch)
tree2a7e8800491130a2fd417aaf6779c76229651135 /src/Patchage.cpp
parent8c5ebde0fd26f9e1488467c4c43cca31b53310f3 (diff)
downloadpatchage-2755425424cd4df87cc7a34bc02b5dedd0a1e21d.tar.gz
patchage-2755425424cd4df87cc7a34bc02b5dedd0a1e21d.tar.bz2
patchage-2755425424cd4df87cc7a34bc02b5dedd0a1e21d.zip
Log all events to message pane
This is maybe a bit much, or they need to be cleaned up a bit to be more presentable, but I like the transparency.
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();
}