diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-11-26 07:06:20 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-11-26 07:06:20 -0500 |
| commit | 2c2c47c21502db6471fe7d727f942c2400b150c1 (patch) | |
| tree | 196108eb94119cbd9fd2abac5fc67dddbf37fa01 /src/main.cpp | |
| parent | 08bf03854d0688cd8dbbfed7d596888dbedfcb4b (diff) | |
log new modules being loaded after startup
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
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()) { |
