From: Michael Vogt Date: Wed, 28 Apr 2010 13:49:55 +0000 (+0200) Subject: apt-pkg/policy.cc: yet another cout -> clog fix X-Git-Tag: 0.8.0~15^2~1 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/4dec007b1d8af31824903ffa3099ff4839ab528e apt-pkg/policy.cc: yet another cout -> clog fix --- diff --git a/apt-pkg/policy.cc b/apt-pkg/policy.cc index f9901bc9a..a24ab7452 100644 --- a/apt-pkg/policy.cc +++ b/apt-pkg/policy.cc @@ -106,7 +106,7 @@ bool pkgPolicy::InitDefaults() if (_config->FindB("Debug::pkgPolicy",false) == true) for (pkgCache::PkgFileIterator F = Cache->FileBegin(); F != Cache->FileEnd(); F++) - cout << "Prio of " << F.FileName() << ' ' << PFPriority[F->ID] << endl; + std::clog << "Prio of " << F.FileName() << ' ' << PFPriority[F->ID] << std::endl; return true; }