summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/CCpp.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-12-14 16:04:04 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-12-14 16:04:04 +0100
commita0aa4bbdaa4d81ff54145af00a2c5a60671d3175 (patch)
tree0f1c62721c1600aabaec8265b020693eaf9b56e2 /lib/Plugins/CCpp.cpp
parent5f3b126f3013cb78fa2e5a8beb935021e21d5c5d (diff)
downloadabrt-a0aa4bbdaa4d81ff54145af00a2c5a60671d3175.tar.gz
abrt-a0aa4bbdaa4d81ff54145af00a2c5a60671d3175.tar.xz
abrt-a0aa4bbdaa4d81ff54145af00a2c5a60671d3175.zip
a bit less verbose and more consistent log messages
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Plugins/CCpp.cpp')
-rw-r--r--lib/Plugins/CCpp.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp
index e4c007a9..37a2c8bc 100644
--- a/lib/Plugins/CCpp.cpp
+++ b/lib/Plugins/CCpp.cpp
@@ -251,7 +251,7 @@ static void GetBacktrace(const char *pDebugDumpDir,
const char *pDebugInfoDirs,
string& pBacktrace)
{
- update_client(_("Getting backtrace..."));
+ update_client(_("Generating backtrace"));
string UID;
string executable;
@@ -369,7 +369,7 @@ static void InstallDebugInfos(const char *pDebugDumpDir,
const char *debuginfo_dirs,
string& build_ids)
{
- update_client(_("Searching for debug-info packages..."));
+ update_client(_("Starting debuginfo installation"));
int pipeout[2]; //TODO: can we use ExecVP?
xpipe(pipeout);
@@ -402,8 +402,6 @@ static void InstallDebugInfos(const char *pDebugDumpDir,
close(pipeout[1]);
- update_client(_("Downloading and installing debug-info packages..."));
-
FILE *pipeout_fp = fdopen(pipeout[0], "r");
if (pipeout_fp == NULL) /* never happens */
{