X-Git-Url: http://www.privoxy.org/gitweb/show-status?a=blobdiff_plain;f=errlog.c;h=27bb4e0c6ab9372fd6bb9c2a7a1ac2ab17724844;hb=490b81212327bce87ced5aafa9f40e2c0f86dc6a;hp=a9cfb8ca602d70d4afecf27911808d6199d1c73f;hpb=c78a3a27b574d049a155542724134f01648d7aac;p=privoxy.git diff --git a/errlog.c b/errlog.c index a9cfb8ca..27bb4e0c 100644 --- a/errlog.c +++ b/errlog.c @@ -583,7 +583,7 @@ static const char *get_log_level_string(int loglevel) case LOG_LEVEL_CONNECT: log_level_string = "Connect"; break; - case LOG_LEVEL_TAGGING: + case LOG_LEVEL_TAGGING: log_level_string = "Tagging"; break; case LOG_LEVEL_WRITING: @@ -659,11 +659,11 @@ void log_error(int loglevel, const char *fmt, ...) #if defined(_WIN32) && !defined(_WIN_CONSOLE) /* - * Irrespective of debug setting, a GET/POST/CONNECT makes - * the taskbar icon animate. (There is an option to disable - * this but checking that is handled inside LogShowActivity()). + * Irrespective of debug setting, a request makes the taskbar icon + * animate. (There is an option to disable this but checking that is + * handled inside LogShowActivity()). */ - if ((loglevel == LOG_LEVEL_REQUEST) || (loglevel == LOG_LEVEL_CRUNCH)) + if (loglevel == LOG_LEVEL_REQUEST) { LogShowActivity(); }