diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:56 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:56 +0000 |
commit | 1809f8d29cee7a6328be806548317bc99632a61b (patch) | |
tree | e979757cc2cf32d31a78b129fd361992badf6f7e /ftparchive/apt-ftparchive.cc | |
parent | e184b9df4e03547ea6df40285b8e3714eed9112c (diff) |
Change verbose logging output of apt-ftparchive to go t...
Author: doogie
Date: 2002-11-11 04:27:51 GMT
Change verbose logging output of apt-ftparchive to go to stderr, instead of
stdout. Also, errors that occur no longer go to stdout, but stderr.
Diffstat (limited to 'ftparchive/apt-ftparchive.cc')
-rw-r--r-- | ftparchive/apt-ftparchive.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc index 3fefafb2c..b150d4092 100644 --- a/ftparchive/apt-ftparchive.cc +++ b/ftparchive/apt-ftparchive.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-ftparchive.cc,v 1.4 2001/06/26 02:50:27 jgg Exp $ +// $Id: apt-ftparchive.cc,v 1.5 2002/11/11 04:27:51 doogie Exp $ /* ###################################################################### apt-scanpackages - Efficient work-alike for dpkg-scanpackages @@ -910,9 +910,9 @@ int main(int argc, const char *argv[]) } // Setup the output streams - c0out.rdbuf(cout.rdbuf()); - c1out.rdbuf(cout.rdbuf()); - c2out.rdbuf(cout.rdbuf()); + c0out.rdbuf(clog.rdbuf()); + c1out.rdbuf(clog.rdbuf()); + c2out.rdbuf(clog.rdbuf()); Quiet = _config->FindI("quiet",0); if (Quiet > 0) c0out.rdbuf(devnull.rdbuf()); |