Skip to content
Snippets Groups Projects
Commit 9efe0243 authored by Eric Cano's avatar Eric Cano
Browse files

Added stack trace in logs when cta::xroot_plugins::XrdCtaFilesystem fails.

parent 0b269d9f
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ extern "C"
try {
return new cta::xroot_plugins::XrdCtaFilesystem();
} catch (cta::exception::Exception &ex) {
std::cerr << "[ERROR] Could not load the CTA xroot plugin. CTA exception caught: " << ex.getMessageValue() << "\n";
std::cerr << "[ERROR] Could not load the CTA xroot plugin. CTA exception caught: " << ex.what() << "\n";
return nullptr;
} catch (std::exception &ex) {
std::cerr << "[ERROR] Could not load the CTA xroot plugin. Exception caught: " << ex.what() << "\n";
......
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