diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-04-28 15:49:55 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-04-28 15:49:55 +0200 |
commit | 4dec007b1d8af31824903ffa3099ff4839ab528e (patch) | |
tree | 90bfbac6c4c12d77c44d506ee78eb7323e7ebf67 /apt-pkg/policy.cc | |
parent | 0c01e682d29051d4e26ea60e378796d30569ba5f (diff) |
apt-pkg/policy.cc: yet another cout -> clog fix
Diffstat (limited to 'apt-pkg/policy.cc')
-rw-r--r-- | apt-pkg/policy.cc | 2 |
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; } |