From 21290e103c56a0e55e4a5df2b8abd39d74b845bb Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 21 Jun 2016 05:25:31 +0200 Subject: [PATCH] feat(registry): Log module refresh --- src/registry.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/registry.cpp b/src/registry.cpp index 3d072a49..34359f22 100644 --- a/src/registry.cpp +++ b/src/registry.cpp @@ -133,6 +133,7 @@ void Registry::notify(std::string module_name) std::unique_lock wait_lck(this->wait_mtx); try { + this->logger->debug("Refreshing output for module: "+ module_name); mod_entry->module->refresh(); } catch (Exception &e) { log_trace("Exception occurred in runner thread for: "+ module_name);