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 /build | |
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 'build')
-rw-r--r-- | build/rpmfc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/rpmfc.c b/build/rpmfc.c index c7e3528e2..d176da5d7 100644 --- a/build/rpmfc.c +++ b/build/rpmfc.c @@ -120,7 +120,7 @@ static StringBuf getOutputFrom(const char * dir, ARGV_t argv, (void) chdir(dir); } - rpmlog(RPMLOG_DEBUG, _("\texecv(%s) pid %d\n"), + rpmlog(RPMLOG_DEBUG, "\texecv(%s) pid %d\n", argv[0], (unsigned)getpid()); unsetenv("MALLOC_CHECK_"); @@ -213,7 +213,7 @@ top: /* Collect status from prog */ reaped = waitpid(child, &status, 0); - rpmlog(RPMLOG_DEBUG, _("\twaitpid(%d) rc %d status %x\n"), + rpmlog(RPMLOG_DEBUG, "\twaitpid(%d) rc %d status %x\n", (unsigned)child, (unsigned)reaped, status); if (failNonZero && (!WIFEXITED(status) || WEXITSTATUS(status))) { |