summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/PluginManagerI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/PluginManagerI.cpp')
-rw-r--r--cpp/src/Ice/PluginManagerI.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/cpp/src/Ice/PluginManagerI.cpp b/cpp/src/Ice/PluginManagerI.cpp
index 0b114402ac8..6e1e2f99449 100644
--- a/cpp/src/Ice/PluginManagerI.cpp
+++ b/cpp/src/Ice/PluginManagerI.cpp
@@ -131,25 +131,22 @@ Ice::PluginManagerI::destroy()
catch(const std::exception& ex)
{
Warning out(getProcessLogger());
- out << "unexpected exception raised by plug-in '" << r->first << "' destruction.\n";
- out << "exception: " << ex.what();
+ out << "unexpected exception raised by plug-in `" << r->first << "' destruction:\n" << ex.what();
}
catch(const std::string& str)
{
Warning out(getProcessLogger());
- out << "unexpected exception raised by plug-in '" << r->first << "' destruction.\n";
- out << "exception: " << str;
+ out << "unexpected exception raised by plug-in `" << r->first << "' destruction:\n" << str;
}
catch(const char* msg)
{
Warning out(getProcessLogger());
- out << "unexpected exception raised by plug-in '" << r->first << "' destruction.\n";
- out << "exception: " << msg;
+ out << "unexpected exception raised by plug-in `" << r->first << "' destruction:\n" << msg;
}
catch(...)
{
Warning out(getProcessLogger());
- out << "unexpected exception raised by plug-in '" << r->first << "' destruction.";
+ out << "unexpected exception raised by plug-in `" << r->first << "' destruction";
}
}
}