diff options
author | Michael Vogt <mvo@debian.org> | 2013-06-27 07:25:53 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-06-27 07:25:53 +0200 |
commit | 32b5dd08ac22b0ad153b145d1500c66fe4c78f83 (patch) | |
tree | 3dfa1e7d6d556a90762b5a7152aa7718636095bd /apt-pkg/algorithms.cc | |
parent | 1af17f1de32234f3a878bd22eea1f45dff06eeb9 (diff) |
show broken count when starting the resolver
Diffstat (limited to 'apt-pkg/algorithms.cc')
-rw-r--r-- | apt-pkg/algorithms.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index 6cde4d6cc..b08b8dcfc 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -845,8 +845,10 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) } while (Again == true); - if (Debug == true) + if (Debug == true) { clog << "Starting" << endl; + clog << " Broken count: " << Cache.BrokenCount() << endl; + } MakeScores(); @@ -874,8 +876,10 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) } } - if (Debug == true) + if (Debug == true) { clog << "Starting 2" << endl; + clog << " Broken count: " << Cache.BrokenCount() << endl; + } /* Now consider all broken packages. For each broken package we either remove the package or fix it's problem. We do this once, it should |