1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Remove alpm_depcmp DEBUG output

alpm_depcmp is simple enough that we shouldn't need constant debug logging,
and the logging we do have in there negatively impacts our speed regardless
of whether we actually are seeing it or not. If it ever needs debugging, it
would be trivial to reimplement it by just temporarily reverting this
commit.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2007-11-30 23:02:06 -06:00
parent e95e346ac7
commit cff1e2a58f

View File

@ -369,10 +369,6 @@ int SYMEXPORT alpm_depcmp(pmpkg_t *pkg, pmdepend_t *dep)
free(provname);
}
char *depstring = alpm_dep_get_string(dep);
_alpm_log(PM_LOG_DEBUG, "alpm_depcmp %s-%s %s : %s\n",
pkgname, pkgversion, depstring, satisfy ? "match" : "no match");
free(depstring);
return(satisfy);
}