You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2002/02/05 16:21:56 UTC

cvs commit: apache-1.3/src/modules/standard mod_alias.c

coar        02/02/05 07:21:56

  Modified:    src/modules/standard mod_alias.c
  Log:
  	Demote the 'turned /foo into http://host/foo' message from
  	WARNING to DEBUG; it's a supported operation, so no need to
  	fill normal log files with noise.  Setting LogLevel to Debug
  	will show the activity, though.
  
  Revision  Changes    Path
  1.48      +1 -1      apache-1.3/src/modules/standard/mod_alias.c
  
  Index: mod_alias.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_alias.c,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -u -r1.47 -r1.48
  --- mod_alias.c	31 Jan 2002 20:29:41 -0000	1.47
  +++ mod_alias.c	5 Feb 2002 15:21:55 -0000	1.48
  @@ -397,7 +397,7 @@
                   char *orig_target = ret;
   
                   ret = ap_construct_url(r->pool, ret, r);
  -                ap_log_rerror(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, r,
  +                ap_log_rerror(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, r,
                                 "incomplete redirection target of '%s' for "
                                 "URI '%s' modified to '%s'",
                                 orig_target, r->uri, ret);
  
  
  

Re: cvs commit: apache-1.3/src/modules/standard mod_alias.c

Posted by Rodent of Unusual Size <Ke...@Golux.Com>.
Joshua Slive wrote:
> 
> If this is supported, should we document it in the interest
> of not creating "hidden features"?

Yep, it's on my list..

> Jsohua.

Who are you, and what have you done with Joshua? :-)
-- 
#ken	P-)}

Ken Coar, Sanagendamgagwedweinini  http://Golux.Com/coar/
Author, developer, opinionist      http://Apache-Server.Com/

"Millennium hand and shrimp!"

RE: cvs commit: apache-1.3/src/modules/standard mod_alias.c

Posted by Joshua Slive <jo...@slive.ca>.
> From: coar@apache.org [mailto:coar@apache.org]

>
> coar        02/02/05 07:21:56
>
>   Modified:    src/modules/standard mod_alias.c
>   Log:
>   	Demote the 'turned /foo into http://host/foo' message from
>   	WARNING to DEBUG; it's a supported operation, so no need to
>   	fill normal log files with noise.  Setting LogLevel to Debug
>   	will show the activity, though.

If this is supported, should we document it in the interest of not creating
"hidden features"?

Jsohua.