diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-10-09 15:01:52 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-10-09 15:01:52 +0300 |
commit | 6bdd2384c47637b0a054b98b2ce8aeec6d7930a7 (patch) | |
tree | 13b0c52a90feaef2d18b53cbd8fc29ad1c3ac567 | |
parent | 81c4b4ba27784047e78c83398f9ff925b26a632b (diff) | |
download | rpm-6bdd2384c47637b0a054b98b2ce8aeec6d7930a7.tar.gz rpm-6bdd2384c47637b0a054b98b2ce8aeec6d7930a7.tar.bz2 rpm-6bdd2384c47637b0a054b98b2ce8aeec6d7930a7.zip |
More RPMMESS -> RPMLOG verbosity fixes
-rw-r--r-- | rpmio/rpmmessages.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpmio/rpmmessages.h b/rpmio/rpmmessages.h index 0b26d1aa4..836087b40 100644 --- a/rpmio/rpmmessages.h +++ b/rpmio/rpmmessages.h @@ -29,11 +29,11 @@ extern "C" { #define rpmDecreaseVerbosity() \ ((void)rpmlogSetMask((((int)(rpmlogSetMask(0) & 0xff)) >> 1))) #define rpmIsNormal() \ - (rpmlogSetMask(0) >= RPMLOG_MASK( RPMMESS_NORMAL )) + (rpmlogSetMask(0) >= RPMLOG_MASK( RPMLOG_NOTICE )) #define rpmIsVerbose() \ - (rpmlogSetMask(0) >= RPMLOG_MASK( RPMMESS_VERBOSE )) + (rpmlogSetMask(0) >= RPMLOG_MASK( RPMLOG_INFO )) #define rpmIsDebug() \ - (rpmlogSetMask(0) >= RPMLOG_MASK( RPMMESS_DEBUG )) + (rpmlogSetMask(0) >= RPMLOG_MASK( RPMLOG_DEBUG )) /* LCL: ??? */ typedef const void * fnpyKey; |