Add global try-catch block around main function

Add additional LDEBUG and LTRACE for debugging
This commit is contained in:
Alexander Bock
2017-02-16 12:30:58 -05:00
parent 2da100c001
commit 8167228d69
4 changed files with 36 additions and 26 deletions

View File

@@ -73,6 +73,7 @@ void ModuleEngine::registerModule(std::unique_ptr<OpenSpaceModule> module) {
LDEBUG("Registering module '" << module->name() << "'");
module->initialize();
LDEBUG("Registered module '" << module->name() << "'");
_modules.push_back(std::move(module));
}