martin      97/10/20 06:28:03

  Modified:    src/modules/standard mod_speling.c
  Log:
  Reduced Log Level for spelling corrections from APLOG_ERR to APLOG_INFO
  Submitted by: "Lars Eilebrecht" <[EMAIL PROTECTED]>
  Reviewed by:  Dean, Martin
  
  Revision  Changes    Path
  1.6       +2 -2      apachen/src/modules/standard/mod_speling.c
  
  Index: mod_speling.c
  ===================================================================
  RCS file: /home/cvs/apachen/src/modules/standard/mod_speling.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mod_speling.c     1997/10/07 05:27:32     1.5
  +++ mod_speling.c     1997/10/20 13:28:02     1.6
  @@ -340,7 +340,7 @@
               table_set(r->headers_out, "Location",
                         construct_url(r->pool, nuri, r->server));
   
  -            aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r->server,
  +            aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, r->server,
                           ref ? "Fixed spelling: %s to %s from %s"
                           : "Fixed spelling: %s to %s",
                           r->uri, nuri, ref);
  @@ -401,7 +401,7 @@
               /* Pass our table to http_protocol.c (see mod_negotiation): */
               table_set(notes, "variant-list", t);
   
  -            aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, r->server,
  +            aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, r->server,
                           ref ? "Spelling fix: %s: %d candidates from %s"
                           : "Spelling fix: %s: %d candidates",
                           r->uri, candidates->nelts, ref);
  
  
  

Reply via email to