Update of /cvsroot/mod-c/ehtml/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv23378/src
Modified Files:
Request.cpp
Log Message:
* Removed spurious debugging messages.
Index: Request.cpp
===================================================================
RCS file: /cvsroot/mod-c/ehtml/src/Request.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Request.cpp 13 Sep 2006 13:57:07 -0000 1.9
--- Request.cpp 17 Sep 2006 22:39:28 -0000 1.10
***************
*** 173,177 ****
ProfileMe();
const apr_array_header_t* arr = apr_table_elts( RequestContext->r->headers_in );
- Debug("%s:%d\n", __PRETTY_FUNCTION__, __LINE__);
if ( arr->nelts > 0 )
{
--- 173,176 ----
***************
*** 187,191 ****
if ( _key )
{
- Debug("Parsing %s\n", _key);
switch ( _key[0] )
{
--- 186,189 ----
***************
*** 206,210 ****
if ( strncmp( "kie", _tmp + 1, 3 ) == 0 )
// We have a cookie
- Debug("Got cookie %s => %s\n", tmp->key, tmp->val);
HeaderCookies.push_back( new HeaderEntry(tmp->key, tmp->val));
}
--- 204,207 ----
|