X-Git-Url: http://www.privoxy.org/gitweb/show-status?a=blobdiff_plain;f=errlog.c;h=e3644fd36b1540567d3dd66e6d9711e49456ead1;hb=f319188cb67aeb355b7134327c7b491724689a41;hp=c6c9b28f8f62597e02a4dbc5e90649920888070b;hpb=e56d26413b7b73cae45e39d934d655d67865ee4e;p=privoxy.git diff --git a/errlog.c b/errlog.c index c6c9b28f..e3644fd3 100644 --- a/errlog.c +++ b/errlog.c @@ -1,4 +1,4 @@ -const char errlog_rcs[] = "$Id: errlog.c,v 1.62 2007/11/30 15:33:46 fabiankeil Exp $"; +const char errlog_rcs[] = "$Id: errlog.c,v 1.63 2007/12/15 19:49:32 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/errlog.c,v $ @@ -33,6 +33,11 @@ const char errlog_rcs[] = "$Id: errlog.c,v 1.62 2007/11/30 15:33:46 fabiankeil E * * Revisions : * $Log: errlog.c,v $ + * Revision 1.63 2007/12/15 19:49:32 fabiankeil + * Stop overloading logfile to control the mingw32 log window as well. + * It's no longer necessary now that we disable all debug lines by default + * and at least one user perceived it as a regression (added in 1.55). + * * Revision 1.62 2007/11/30 15:33:46 fabiankeil * Unbreak LOG_LEVEL_FATAL. It wasn't fatal with logging disabled * and on mingw32 fatal log messages didn't end up in the log file. @@ -1150,11 +1155,13 @@ void log_error(int loglevel, const char *fmt, ...) loglevel = LOG_LEVEL_FATAL; } +#ifdef _WIN32 + assert(loglevel & debug); +#else assert( -#ifndef _WIN32 (NULL != logfp) || -#endif (loglevel & debug)); +#endif if (loglevel == LOG_LEVEL_FATAL) {