Skip to content
Snippets Groups Projects
Commit d1caaacf authored by deuce's avatar deuce
Browse files

Remove over-verbose debug messages.

parent 684fb407
No related branches found
No related tags found
No related merge requests found
......@@ -1989,16 +1989,12 @@ static BOOL check_extra_path(http_session_t * session)
for(i=0; startup->index_file_name!=NULL && startup->index_file_name[i]!=NULL ;i++) {
*end=0;
strcat(rpath,startup->index_file_name[i]);
if(startup->options&WEB_OPT_DEBUG_TX)
lprintf(LOG_DEBUG,"%04d Checking for embedded %s",session->socket,rpath);
if(!stat(rpath,&sb)) {
*end=0;
SAFECOPY(session->req.extra_path_info,epath);
SAFECOPY(session->req.virtual_path,vpath);
strcat(session->req.virtual_path,"/");
SAFECOPY(session->req.physical_path,rpath);
if(startup->options&WEB_OPT_DEBUG_TX)
lprintf(LOG_DEBUG,"%04d Matched %s",session->socket,rpath);
return(TRUE);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment