From: Frederic Marchal Date: Wed, 4 Mar 2015 19:55:34 +0000 (+0100) Subject: Remove the flooding of the console with a debug message X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=87d42c976636f8b295f25f52b8188cd9702359e1;p=thirdparty%2Fsarg.git Remove the flooding of the console with a debug message Every excluded site was reported on the console when -z was used. Those messages were flooding the console even with a small log file. As the message belong to the most advanced debugging level, its debug level as been increased to -zzzz. --- diff --git a/readlog.c b/readlog.c index 4dd6330..de6199d 100644 --- a/readlog.c +++ b/readlog.c @@ -473,7 +473,7 @@ static void ReadOneLogFile(struct ReadLogDataStruct *Filter,const char *arq) } if(Filter->HostFilter) { if(!vhexclude(url)) { - if (debugz>=LogLevel_Process) debuga(_("Excluded site: %s\n"),url); + if (debugz>=LogLevel_Data) debuga(_("Excluded site: %s\n"),url); excluded_count[ER_Url]++; totregsx++; continue;