diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-03-07 09:47:51 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-03-07 09:47:51 +0200 |
commit | a08ececd832de2fb4de426d8894abccd45a7c3df (patch) | |
tree | aee1008294e17df8bb08e2ca289cd9d1d37501ea /lib/fsm.c | |
parent | e97e5619e9ddaf8b0e78568ca8848e2c2840dd00 (diff) | |
download | rpm-a08ececd832de2fb4de426d8894abccd45a7c3df.tar.gz rpm-a08ececd832de2fb4de426d8894abccd45a7c3df.tar.bz2 rpm-a08ececd832de2fb4de426d8894abccd45a7c3df.zip |
Log message adjustments
- dont waste translator time by having them translate obscure debug messages
- adjust some suspect looking logging levels
- mark some non-debug messages for translation where missing..
Diffstat (limited to 'lib/fsm.c')
-rw-r--r-- | lib/fsm.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -321,9 +321,9 @@ void * dnlInitIterator(const FSM_t fsm, if (j == 0) { j = 1; rpmlog(RPMLOG_DEBUG, - _("========== Directories not explicitly included in package:\n")); + "========== Directories not explicitly included in package:\n"); } - rpmlog(RPMLOG_DEBUG, _("%10d %s\n"), i, fi->dnl[i]); + rpmlog(RPMLOG_DEBUG, "%10d %s\n", i, fi->dnl[i]); } if (j) rpmlog(RPMLOG_DEBUG, "==========\n"); @@ -1192,11 +1192,11 @@ static int fsmMkdirs(FSM_t fsm) if (fsm->fcontext == NULL) rpmlog(RPMLOG_DEBUG, - _("%s directory created with perms %04o, no context.\n"), + "%s directory created with perms %04o, no context.\n", fsm->path, (unsigned)(st->st_mode & 07777)); else rpmlog(RPMLOG_DEBUG, - _("%s directory created with perms %04o, context %s.\n"), + "%s directory created with perms %04o, context %s.\n", fsm->path, (unsigned)(st->st_mode & 07777), fsm->fcontext); fsm->fcontext = NULL; |