summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-11-26 07:06:20 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2019-11-26 07:06:20 -0500
commit2c2c47c21502db6471fe7d727f942c2400b150c1 (patch)
tree196108eb94119cbd9fd2abac5fc67dddbf37fa01 /src/main.cpp
parent08bf03854d0688cd8dbbfed7d596888dbedfcb4b (diff)
log new modules being loaded after startup
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 41ce0eb5..6e112479 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -547,6 +547,10 @@ int runApplication(MOApplication &application, SingleInstance &instance,
settings.dump();
sanityChecks(env);
+ const auto moduleNotification = env.onModuleLoaded([](auto&& m) {
+ log::debug("loaded module {}", m.toString());
+ });
+
log::debug("initializing core");
OrganizerCore organizer(settings);
if (!organizer.bootstrap()) {