summaryrefslogtreecommitdiff
path: root/apt-pkg/policy.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-04-28 15:49:55 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2010-04-28 15:49:55 +0200
commit4dec007b1d8af31824903ffa3099ff4839ab528e (patch)
tree90bfbac6c4c12d77c44d506ee78eb7323e7ebf67 /apt-pkg/policy.cc
parent0c01e682d29051d4e26ea60e378796d30569ba5f (diff)
apt-pkg/policy.cc: yet another cout -> clog fix
Diffstat (limited to 'apt-pkg/policy.cc')
-rw-r--r--apt-pkg/policy.cc2
1 files changed, 1 insertions, 1 deletions
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;
}