summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pacman/pacman.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index 3264a719..016296cb 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -90,9 +90,8 @@ int main(int argc, char *argv[])
ERR(NL, "could not allocate memory for pacman config data.\n");
return(1);
}
- config->op = PM_OP_MAIN;
- config->debug |= PM_LOG_WARNING;
- config->verbose = 1;
+ config->op = PM_OP_MAIN;
+ config->debug |= PM_LOG_WARNING | PM_LOG_ERROR;
/* parse the command line */
ret = parseargs(argc, argv);