From caf38bbfe3279b9bea861e4d5b70f3c50c6e1755 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 26 Aug 2009 19:40:28 +0200 Subject: add job ids (== thread ids) to warning/update DBus messages renamed: comm_layer_inner_warning -> warn_client comm_layer_inner_status -> update_client Signed-off-by: Denys Vlasenko --- src/Daemon/PluginManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Daemon/PluginManager.cpp') diff --git a/src/Daemon/PluginManager.cpp b/src/Daemon/PluginManager.cpp index 01c2ef9..acabc93 100644 --- a/src/Daemon/PluginManager.cpp +++ b/src/Daemon/PluginManager.cpp @@ -180,8 +180,8 @@ void CPluginManager::LoadPlugin(const std::string& pName) catch (CABRTException& e) { delete abrtPlugin; - comm_layer_inner_warning("CPluginManager::LoadPlugin(): " + e.what()); - comm_layer_inner_warning("Failed to load plugin " + pName); + warn_client("CPluginManager::LoadPlugin(): " + e.what()); + warn_client("Failed to load plugin " + pName); } } } @@ -214,7 +214,7 @@ void CPluginManager::RegisterPlugin(const std::string& pName) } catch (CABRTException& e) { - comm_layer_inner_warning("Can not initialize plugin " + pName + "(" + warn_client("Can not initialize plugin " + pName + "(" + std::string(plugin_type_str[m_mapABRTPlugins[pName]->GetType()]) + "): " + e.what()); UnLoadPlugin(pName); -- cgit