apt-pkg/policy.cc: yet another cout -> clog fix
authorMichael Vogt <michael.vogt@ubuntu.com>
Wed, 28 Apr 2010 13:49:55 +0000 (15:49 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Wed, 28 Apr 2010 13:49:55 +0000 (15:49 +0200)
apt-pkg/policy.cc

index f9901bc..a24ab74 100644 (file)
@@ -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;   
 }