From: Michael Vogt Date: Thu, 27 Jun 2013 08:27:29 +0000 (+0200) Subject: use just one line for the debug output (thanks to donkult for the review) X-Git-Tag: 0.9.9~7 X-Git-Url: https://git.hcoop.net/ntk/apt.git/commitdiff_plain/dcab2a78e1585903ff144949f40c514788638f92 use just one line for the debug output (thanks to donkult for the review) --- diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index b08b8dcf..c2c38e72 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