diff options
author | Michael Vogt <mvo@debian.org> | 2013-06-27 10:27:29 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-06-27 10:27:29 +0200 |
commit | dcab2a78e1585903ff144949f40c514788638f92 (patch) | |
tree | d218195374e233ddbddd92eef75afd4cad52add4 /apt-pkg/algorithms.cc | |
parent | 06f881174113eaa667006663c6f4da3e3f4409b4 (diff) |
use just one line for the debug output (thanks to donkult for the review)
Diffstat (limited to 'apt-pkg/algorithms.cc')
-rw-r--r-- | apt-pkg/algorithms.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index b08b8dcfc..c2c38e728 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -846,8 +846,7 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) while (Again == true); if (Debug == true) { - clog << "Starting" << endl; - clog << " Broken count: " << Cache.BrokenCount() << endl; + clog << "Starting, broken count: " << Cache.BrokenCount() << endl; } MakeScores(); @@ -877,8 +876,7 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) } if (Debug == true) { - clog << "Starting 2" << endl; - clog << " Broken count: " << Cache.BrokenCount() << endl; + clog << "Starting 2, broken count: " << Cache.BrokenCount() << endl; } /* Now consider all broken packages. For each broken package we either |