log resolvePool result
authorKlaus Kaempf <kkaempf@suse.de>
Mon, 6 Feb 2006 14:48:00 +0000 (14:48 +0000)
committerKlaus Kaempf <kkaempf@suse.de>
Mon, 6 Feb 2006 14:48:00 +0000 (14:48 +0000)
zypp/solver/detail/Resolver.cc

index d26e0555748b53e33426571fe23495dd4929576e..7c67651347fe7d4bc4f7fcc6e97cd97d9f2ebc93 100644 (file)
@@ -638,10 +638,13 @@ Resolver::resolvePool ()
     bool have_solution = resolveDependencies ();               // resolve !
 
     if (have_solution) {                                       // copy solution back to pool
+       MIL << "Have solution, copying back to pool" << endl;
        ResolverContext_Ptr solution = bestContext();
        solution->foreachMarked (solution_to_pool, NULL);
     }
-
+    else {
+       MIL << "!!! Have NO solution !!!" << endl;
+    }
     return have_solution;
 }