summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-07-20 17:05:03 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-07-20 17:05:03 +0200
commitbea2c1ac43a6277c5980083c18e07e56c5887cc5 (patch)
treec9b4b0a3ad52b59845f5c6f06f10e7a03d16dbe8
parentdb538e74d9e25f2c3c9cac4ab8749cebf0a6880f (diff)
downloadabrt-bea2c1ac43a6277c5980083c18e07e56c5887cc5.tar.gz
abrt-bea2c1ac43a6277c5980083c18e07e56c5887cc5.tar.xz
abrt-bea2c1ac43a6277c5980083c18e07e56c5887cc5.zip
CCpp: Made it more verbose
-rw-r--r--lib/Plugins/CCpp.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp
index 65dbd24f..1425d616 100644
--- a/lib/Plugins/CCpp.cpp
+++ b/lib/Plugins/CCpp.cpp
@@ -89,7 +89,7 @@ std::string CAnalyzerCCpp::CreateHash(const std::string& pInput)
void CAnalyzerCCpp::InstallDebugInfos(const std::string& pPackage)
{
- comm_layer_inner_status("Installing debug infos...");
+ comm_layer_inner_status("Searching for debug-info packages...");
std::string packageName = pPackage.substr(0, pPackage.rfind("-", pPackage.rfind("-")-1));
char buff[1024];
@@ -108,7 +108,7 @@ void CAnalyzerCCpp::InstallDebugInfos(const std::string& pPackage)
m_Pid = child;
if (child < 0)
{
- throw CABRTException(EXCEP_PLUGIN, "CAnalyzerCCpp::RunGdb(): fork failed.");
+ throw CABRTException(EXCEP_PLUGIN, "CAnalyzerCCpp::InstallDebugInfos(): fork failed.");
}
if (child == 0)
{
@@ -188,6 +188,7 @@ void CAnalyzerCCpp::InstallDebugInfos(const std::string& pPackage)
wait(NULL);
throw CABRTException(EXCEP_PLUGIN, "CAnalyzerCCpp::InstallDebugInfos(): cannot install debuginfos for " + pPackage);
}
+ comm_layer_inner_status("Downloading and installing debug-info packages...");
}
}
}