summaryrefslogtreecommitdiff
path: root/lib/rpmgi.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-10-09 14:53:09 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-10-09 14:53:09 +0300
commit832580670ac00f1de425960cf15261b784388077 (patch)
tree26e122166b5cd2bb225924e1ff3d1a8a8515fd6a /lib/rpmgi.c
parent0eb7deabf2364e0c2671090a1f774c06a9217c1e (diff)
downloadrpm-832580670ac00f1de425960cf15261b784388077.tar.gz
rpm-832580670ac00f1de425960cf15261b784388077.tar.bz2
rpm-832580670ac00f1de425960cf15261b784388077.zip
Replace all uses of RPMMESS_VERBOSE with RPMLOG_INFO
Diffstat (limited to 'lib/rpmgi.c')
-rw-r--r--lib/rpmgi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rpmgi.c b/lib/rpmgi.c
index 442d4b525..e04f0cc62 100644
--- a/lib/rpmgi.c
+++ b/lib/rpmgi.c
@@ -581,19 +581,19 @@ enditer:
ps = rpmtsProblems(ts);
if (rpmpsNumProblems(ps) > 0) {
/* XXX rpminstall will need RPMLOG_ERR */
- rpmlog(RPMMESS_VERBOSE, _("Failed dependencies:\n"));
+ rpmlog(RPMLOG_INFO, _("Failed dependencies:\n"));
if (rpmIsVerbose())
rpmpsPrint(NULL, ps);
if (ts->suggests != NULL && ts->nsuggests > 0) {
- rpmlog(RPMMESS_VERBOSE, _(" Suggested resolutions:\n"));
+ rpmlog(RPMLOG_INFO, _(" Suggested resolutions:\n"));
for (i = 0; i < ts->nsuggests; i++) {
const char * str = ts->suggests[i];
if (str == NULL)
break;
- rpmlog(RPMMESS_VERBOSE, "\t%s\n", str);
+ rpmlog(RPMLOG_INFO, "\t%s\n", str);
ts->suggests[i] = NULL;
str = _free(str);