Return-Path: Delivered-To: apmail-tcl-rivet-dev-archive@tcl.apache.org Received: (qmail 19090 invoked by uid 500); 9 Jan 2003 04:33:53 -0000 Mailing-List: contact rivet-cvs-help@tcl.apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list rivet-cvs@tcl.apache.org Received: (qmail 19079 invoked from network); 9 Jan 2003 04:33:53 -0000 Date: 9 Jan 2003 04:33:52 -0000 Message-ID: <20030109043352.93672.qmail@icarus.apache.org> From: davidw@apache.org To: tcl-rivet-cvs@apache.org Subject: cvs commit: tcl-rivet/src mod_rivet.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N davidw 2003/01/08 20:33:52 Modified: . ChangeLog src mod_rivet.c Log: * src/mod_rivet.c (Rivet_ChildInit): Patch from Karl Lehenbauer to print out errorInfo upon ChildInit failure. Revision Changes Path 1.94 +5 -0 tcl-rivet/ChangeLog Index: ChangeLog =================================================================== RCS file: /home/cvs/tcl-rivet/ChangeLog,v retrieving revision 1.93 retrieving revision 1.94 diff -u -r1.93 -r1.94 --- ChangeLog 7 Jan 2003 21:28:16 -0000 1.93 +++ ChangeLog 9 Jan 2003 04:33:51 -0000 1.94 @@ -1,3 +1,8 @@ +2003-01-08 David N. Welton + + * src/mod_rivet.c (Rivet_ChildInit): Patch from Karl Lehenbauer to + print out errorInfo upon ChildInit failure. + 2003-01-07 David N. Welton * src/TclWebapache.c (TclWeb_UploadData): Fix from Holger Zeinert 1.57 +4 -1 tcl-rivet/src/mod_rivet.c Index: mod_rivet.c =================================================================== RCS file: /home/cvs/tcl-rivet/src/mod_rivet.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- mod_rivet.c 14 Dec 2002 01:03:51 -0000 1.56 +++ mod_rivet.c 9 Jan 2003 04:33:51 -0000 1.57 @@ -1105,6 +1105,9 @@ ap_log_error(APLOG_MARK, APLOG_ERR, s, "Problem running child init script: %s", Tcl_GetString(rsc->rivet_child_init_script)); + ap_log_error(APLOG_MARK, APLOG_ERR, s, "%s", + Tcl_GetVar(rsc->server_interp, "errorInfo", 0)); + } } sr = sr->next; --------------------------------------------------------------------- To unsubscribe, e-mail: rivet-cvs-unsubscribe@tcl.apache.org For additional commands, e-mail: rivet-cvs-help@tcl.apache.org