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 12:35:58 UTC

cvs commit: httpd-2.0/modules/mappers mod_alias.c

coar        02/02/05 03:35:58

  Modified:    modules/mappers mod_alias.c
  Log:
  	Change the 'we turned /foo into http://host/foo' log message
  	to DEBUG; no reason to clutter people's log files with this
  	when it's supported behaviour.  Of course, they can find out
  	about the performance impact by LogLeveling Debug. :-)
  
  Revision  Changes    Path
  1.36      +1 -1      httpd-2.0/modules/mappers/mod_alias.c
  
  Index: mod_alias.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_alias.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -u -r1.35 -r1.36
  --- mod_alias.c	31 Jan 2002 20:38:08 -0000	1.35
  +++ mod_alias.c	5 Feb 2002 11:35:57 -0000	1.36
  @@ -440,7 +440,7 @@
                   char *orig_target = ret;
   
                   ret = ap_construct_url(r->pool, ret, r);
  -                ap_log_rerror(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, 0, r,
  +                ap_log_rerror(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r,
                                 "incomplete redirection target of '%s' for "
                                 "URI '%s' modified to '%s'",
                                 orig_target, r->uri, ret);