Skip to content
Snippets Groups Projects
Commit 2a9c4075 authored by Julien Leduc's avatar Julien Leduc
Browse files

fixing #668

parent 6eb1b2e4
No related branches found
No related tags found
No related merge requests found
......@@ -235,7 +235,7 @@ int main(const int argc, char **const argv) {
programRc = cta::taped::exceptionThrowingMain(*commandLine, log);
} catch(exception::Exception &ex) {
std::list<cta::log::Param> params = {
cta::log::Param("message", ex.getMessage().str())};
cta::log::Param("exceptionMessage", ex.getMessage().str())};
log(log::ERR, "Caught an unexpected CTA exception, cta-taped cannot start", params);
sleep(1);
} catch(std::exception &se) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment