From a0aa4bbdaa4d81ff54145af00a2c5a60671d3175 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 14 Dec 2009 16:04:04 +0100 Subject: a bit less verbose and more consistent log messages Signed-off-by: Denys Vlasenko --- lib/Plugins/CCpp.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'lib/Plugins/CCpp.cpp') diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp index e4c007a..37a2c8b 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 */ { -- cgit