From 22882f4e89d2f36d12c557a51b845c22f5868876 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 17 Aug 2011 12:16:32 +0200 Subject: [PATCH] Bugfix: Initialize verbose to 'false' (Thanks tilman) Verbosity was set to 'true' when we started the tree branch. We forgot to set it back to 'false' :-). --- src/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.c b/src/log.c index 22b7fffe..d424ffd3 100644 --- a/src/log.c +++ b/src/log.c @@ -24,7 +24,7 @@ #include "loglevels.h" static uint64_t loglevel = 0; -static bool verbose = true; +static bool verbose = false; static FILE *errorfile; char *errorfilename; -- 2.39.2