fixed debug output

This commit is contained in:
Andreas Steffen
2012-11-05 21:56:49 +01:00
parent d78c869cff
commit dad76a5828
+4 -5
View File
@@ -94,8 +94,6 @@ METHOD(imv_os_database_t, check_packages, status_t,
} }
e->destroy(e); e->destroy(e);
DBG1(DBG_IMV, "'%s': pid = %d", product, pid);
while (package_enumerator->enumerate(package_enumerator, &name, &version)) while (package_enumerator->enumerate(package_enumerator, &name, &version))
{ {
/* Convert package name chunk to a string */ /* Convert package name chunk to a string */
@@ -116,7 +114,7 @@ METHOD(imv_os_database_t, check_packages, status_t,
} }
if (!e->enumerate(e, &gid)) if (!e->enumerate(e, &gid))
{ {
/* not found in database vor any product - skip */ /* package not present in database for any product - skip */
count_not_found++; count_not_found++;
e->destroy(e); e->destroy(e);
continue; continue;
@@ -171,6 +169,7 @@ METHOD(imv_os_database_t, check_packages, status_t,
} }
else else
{ {
/* package not present in database for this product - skip */
count_not_found++; count_not_found++;
} }
free(package); free(package);
@@ -178,8 +177,8 @@ METHOD(imv_os_database_t, check_packages, status_t,
} }
free(product); free(product);
DBG1(DBG_IMV, "processed %d packages: %d ok, %d no match, %d not found", DBG1(DBG_IMV, "processed %d packages: %d no match, %d ok, %d not found",
count, count_ok, count_no_match, count_not_found); count, count_no_match, count_ok, count_not_found);
return status; return status;
} }