diff options
author | Michael Vogt <mvo@debian.org> | 2013-06-28 07:37:55 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-06-28 07:37:55 +0200 |
commit | 49b49018ff08e337c506d5ccb3476bc2faa5d1b5 (patch) | |
tree | 32c5b95f94bfe329d74267eb1cabafec807a3d2f /apt-pkg/algorithms.cc | |
parent | dcab2a78e1585903ff144949f40c514788638f92 (diff) |
make starting debug output of pkgProblemResolver proper english
Diffstat (limited to 'apt-pkg/algorithms.cc')
-rw-r--r-- | apt-pkg/algorithms.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index c2c38e728..df38e6109 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -846,7 +846,8 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) while (Again == true); if (Debug == true) { - clog << "Starting, broken count: " << Cache.BrokenCount() << endl; + clog << "Starting pkgProblemResolver with broken count: " + << Cache.BrokenCount() << endl; } MakeScores(); @@ -876,7 +877,8 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) } if (Debug == true) { - clog << "Starting 2, broken count: " << Cache.BrokenCount() << endl; + clog << "Starting 2 pkgProblemResolver with broken count: " + << Cache.BrokenCount() << endl; } /* Now consider all broken packages. For each broken package we either |