summaryrefslogtreecommitdiff
path: root/lib/rpmgi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rpmgi.c')
-rw-r--r--lib/rpmgi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rpmgi.c b/lib/rpmgi.c
index 67fb00095..58045d035 100644
--- a/lib/rpmgi.c
+++ b/lib/rpmgi.c
@@ -184,7 +184,7 @@ static rpmRC rpmgiWalkPathFilter(rpmgi gi)
const char * s;
if (_rpmgi_debug < 0)
-rpmMessage(RPMMESS_DEBUG, "FTS_%s\t%*s %s%s\n", ftsInfoStr(fts->fts_info),
+rpmlog(RPMMESS_DEBUG, "FTS_%s\t%*s %s%s\n", ftsInfoStr(fts->fts_info),
indent * (fts->fts_level < 0 ? 0 : fts->fts_level), "",
fts->fts_name,
((fts->fts_info == FTS_D || fts->fts_info == FTS_DP) ? "/" : ""));
@@ -581,19 +581,19 @@ enditer:
ps = rpmtsProblems(ts);
if (rpmpsNumProblems(ps) > 0) {
/* XXX rpminstall will need RPMMESS_ERROR */
- rpmMessage(RPMMESS_VERBOSE, _("Failed dependencies:\n"));
+ rpmlog(RPMMESS_VERBOSE, _("Failed dependencies:\n"));
if (rpmIsVerbose())
rpmpsPrint(NULL, ps);
if (ts->suggests != NULL && ts->nsuggests > 0) {
- rpmMessage(RPMMESS_VERBOSE, _(" Suggested resolutions:\n"));
+ rpmlog(RPMMESS_VERBOSE, _(" Suggested resolutions:\n"));
for (i = 0; i < ts->nsuggests; i++) {
const char * str = ts->suggests[i];
if (str == NULL)
break;
- rpmMessage(RPMMESS_VERBOSE, "\t%s\n", str);
+ rpmlog(RPMMESS_VERBOSE, "\t%s\n", str);
ts->suggests[i] = NULL;
str = _free(str);