From edef494c4b02db44fbd9e97fb4893f965f503eaf Mon Sep 17 00:00:00 2001 From: Klaus Kaempf Date: Thu, 9 Feb 2006 12:48:49 +0000 Subject: [PATCH] add count to debug --- zypp/solver/detail/Resolver.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zypp/solver/detail/Resolver.cc b/zypp/solver/detail/Resolver.cc index 8db1347..a84e5af 100644 --- a/zypp/solver/detail/Resolver.cc +++ b/zypp/solver/detail/Resolver.cc @@ -724,11 +724,12 @@ Resolver::resolvePool () reset(); #if 1 + int count = 0; MIL << "Resolver::resolvePool()" << endl; MIL << "Pool before resolve" << endl; MIL << "---------------------------------------" << endl; for (ResPool::const_iterator it = _pool.begin(); it != _pool.end(); ++it) { - MIL << *it << endl; + MIL << ++count << ": " << *it << endl; } MIL << "---------------------------------------" << endl; #endif -- 2.7.4