summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-02-21 02:50:46 +0100
committerAaron Griffin <aaron@archlinux.org>2007-02-21 02:50:46 +0100
commita8dd8d5770094ad8c925a56d47c3607c96363a51 (patch)
tree63c9daa9cd6c2129924e21c0729530fd171347e9
parent74f4fe9fe94a1c9ccf6f94a3e9094be2c7537deb (diff)
downloadpacman-a8dd8d5770094ad8c925a56d47c3607c96363a51.tar.gz
pacman-a8dd8d5770094ad8c925a56d47c3607c96363a51.tar.xz
* Looks like I left some debugging code in there
-rw-r--r--src/pacman/pacman.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index 85bb9e0d..0b4b40c7 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -290,7 +290,6 @@ static int parseargs(int argc, char *argv[])
if(optarg) {
unsigned short debug = atoi(optarg);
- printf("setting logmask to %s\n", optarg);
switch(debug) {
case 3: logmask |= PM_LOG_FUNCTION; /* fall through */
case 2: logmask |= PM_LOG_DOWNLOAD; /*fall through */
@@ -299,7 +298,6 @@ static int parseargs(int argc, char *argv[])
ERR(NL, _("'%s' is not a valid debug level"), optarg);
return(1);
}
- printf("logmask = %d\n", logmask);
} else {
logmask |= PM_LOG_DEBUG;
}