]> git.saurik.com Git - apt.git/commitdiff
Change verbose logging output of apt-ftparchive to go t...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:59:56 +0000 (16:59 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:59:56 +0000 (16:59 +0000)
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.

debian/changelog
ftparchive/apt-ftparchive.cc
ftparchive/writer.cc

index b3d96d61779856a0f9ee368b095ce924c210fe08..cf266558f96377da9982b3c78f2bbc643dd1fe36 100644 (file)
@@ -65,6 +65,9 @@ apt (0.5.5) unstable; urgency=low
     #92358
   * Add an options and timeout config item to ssh/rsh.  Closes: #90654
   * libapt-pkg-dev now depends on apt-utils.  Closes: #133942.
+  * 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.  Closes: #161592
 
  -- Jason Gunthorpe <jgg@debian.org>  Sun, 15 Sep 2002 17:16:59 -0600
 
index 3fefafb2cf23dfe905508983c8c1f6f75a152bcd..b150d40928b9681210d10b0e7a0edad1c04d177f 100644 (file)
@@ -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());
index b3ee49c758538e5abd55f7aba877148c31ab24f0..9f053bd2cef2cf51aebee37ca01b79ffc3742024 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: writer.cc,v 1.5 2002/04/24 05:02:40 jgg Exp $
+// $Id: writer.cc,v 1.6 2002/11/11 04:27:51 doogie Exp $
 /* ######################################################################
 
    Writer 
@@ -118,9 +118,9 @@ int FTWScanner::Scanner(const char *File,const struct stat *sb,int Flag)
         
         bool Type = _error->PopMessage(Err);
         if (Type == true)
-           c1out << "E: " << Err << endl;
+           cerr << "E: " << Err << endl;
         else
-           c1out << "W: " << Err << endl;
+           cerr << "W: " << Err << endl;
         
         if (Err.find(File) != string::npos)
            SeenPath = true;