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/writer.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/writer.cc')
-rw-r--r-- | ftparchive/writer.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftparchive/writer.cc b/ftparchive/writer.cc index b3ee49c75..9f053bd2c 100644 --- a/ftparchive/writer.cc +++ b/ftparchive/writer.cc @@ -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; |