aboutsummaryrefslogtreecommitdiff
path: root/qlop.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-12-16 23:40:23 -0500
committerMike Frysinger <vapier@gentoo.org>2015-12-16 23:40:23 -0500
commit1d4228adcfe4489bd330076e2b1004905d97d6cc (patch)
treef4f9b63c6e8c92d173030e97dc1b15c1b14b6ae7 /qlop.c
parentTODO: add more ideas (diff)
downloadportage-utils-1d4228adcfe4489bd330076e2b1004905d97d6cc.tar.gz
portage-utils-1d4228adcfe4489bd330076e2b1004905d97d6cc.tar.bz2
portage-utils-1d4228adcfe4489bd330076e2b1004905d97d6cc.zip
clean up old debug statements
Much of this debug output has outlived its usefulness now that the code has stabilized. Clean it all up to make the debug builds way less noisy and keep from breaking the tests.
Diffstat (limited to 'qlop.c')
-rw-r--r--qlop.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/qlop.c b/qlop.c
index f2f97c6..546c353 100644
--- a/qlop.c
+++ b/qlop.c
@@ -107,8 +107,6 @@ show_merge_times(char *package, const char *logfile, int average, char human_rea
pkg = package;
}
- DBG("Searching for %s in %s\n", pkg, logfile);
-
if ((fp = fopen(logfile, "r")) == NULL) {
warnp("Could not open logfile '%s'", logfile);
return 1;
@@ -645,9 +643,6 @@ int qlop_main(int argc, char **argv)
char do_time, do_list, do_unlist, do_sync, do_current, do_human_readable = 0;
char *logfile = NULL;
- DBG("argc=%d argv[0]=%s argv[1]=%s",
- argc, argv[0], argc > 1 ? argv[1] : "NULL?");
-
do_time = do_list = do_unlist = do_sync = do_current = 0;
while ((i = GETOPT_LONG(QLOP, qlop, "")) != -1) {