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:
parent
e95e346ac7
commit
cff1e2a58f
1 changed files with 0 additions and 4 deletions
|
@ -369,10 +369,6 @@ int SYMEXPORT alpm_depcmp(pmpkg_t *pkg, pmdepend_t *dep)
|
||||||
free(provname);
|
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);
|
return(satisfy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue