diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-04 13:26:49 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-04 13:26:49 +0200 |
commit | 6ee2b0f83ea3c41b52c8076eac63f921c51b9887 (patch) | |
tree | 545614a9d8074a34ec7daf2491c8a037055e62be /apt-pkg/depcache.cc | |
parent | 173ae2a460b905b18911f42964fd38dbac2959d6 (diff) | |
parent | 52d9d000a74ea71edff93f00ae38aceb9ada53d4 (diff) |
merge from the debian-sid branch
Diffstat (limited to 'apt-pkg/depcache.cc')
-rw-r--r-- | apt-pkg/depcache.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index 659c4227e..4d1a08eb6 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -192,7 +192,7 @@ bool pkgDepCache::readStateFile(OpProgress *Prog) /*{{{*/ { PkgState[pkg->ID].Flags |= Flag::Auto; if (unlikely(debug_autoremove)) - std::cout << "Auto-Installed : " << pkg.FullName() << std::endl; + std::clog << "Auto-Installed : " << pkg.FullName() << std::endl; if (pkgarch == "any") { pkgCache::GrpIterator G = pkg.Group(); @@ -1819,7 +1819,7 @@ bool pkgDepCache::Sweep() /*{{{*/ { state.Garbage=true; if(debug_autoremove) - std::cout << "Garbage: " << p.FullName() << std::endl; + std::clog << "Garbage: " << p.FullName() << std::endl; } } |