diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-05-04 10:02:15 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-05-04 10:02:15 +0200 |
commit | 549edd163e34a50091623b47881f2eefbdc53aca (patch) | |
tree | ec46425ae005e8e426727ab896e7614df06aced6 /apt-pkg/depcache.cc | |
parent | 259f688a29728604d7930662e9743619982706ab (diff) | |
parent | 52d9d000a74ea71edff93f00ae38aceb9ada53d4 (diff) |
merged 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 75f69ee11..2c7cdd5c2 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(); @@ -1772,7 +1772,7 @@ bool pkgDepCache::Sweep() /*{{{*/ { state.Garbage=true; if(debug_autoremove) - std::cout << "Garbage: " << p.FullName() << std::endl; + std::clog << "Garbage: " << p.FullName() << std::endl; } } |