From: Gonzalo A. <ga...@us...> - 2006-09-21 17:13:26
|
Update of /cvsroot/mod-c/mod_c/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv29659/src Modified Files: mod_c.c Log Message: * Logging macros now depend on apache log level configuration, rather than on a compile time switch. Index: mod_c.c =================================================================== RCS file: /cvsroot/mod-c/mod_c/src/mod_c.c,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** mod_c.c 17 Sep 2006 18:40:41 -0000 1.25 --- mod_c.c 21 Sep 2006 17:13:14 -0000 1.26 *************** *** 117,121 **** msg = LoadAndCacheEHTML(config->ehtml_cache, r->filename, &e); if (msg != NULL) { ! RDEBUG(LOG_ERR, r, "Error caching %s: %s", r->filename, msg); return HTTP_INTERNAL_SERVER_ERROR; } --- 117,121 ---- msg = LoadAndCacheEHTML(config->ehtml_cache, r->filename, &e); if (msg != NULL) { ! RERROR(r, "Error caching %s: %s", r->filename, msg); return HTTP_INTERNAL_SERVER_ERROR; } |