adrian      2003/06/27 18:38:43

  Modified:    httpclient/src/java/org/apache/commons/httpclient
                        HttpMethodBase.java
  Log:
  Changed HttpMethodBase to initialize its Log object with HttpMethodBase.class 
instead of HttpMethod.class.
  
  PR: Bug 21159
  Submitted by: Laura Werner
  Reviewed by:  Adrian Sutton
  
  Revision  Changes    Path
  1.158     +5 -5      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java
  
  Index: HttpMethodBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v
  retrieving revision 1.157
  retrieving revision 1.158
  diff -u -r1.157 -r1.158
  --- HttpMethodBase.java       27 Jun 2003 21:17:36 -0000      1.157
  +++ HttpMethodBase.java       28 Jun 2003 01:38:43 -0000      1.158
  @@ -147,7 +147,7 @@
       // -------------------------------------------------------------- Constants
   
       /** Log object for this class. */
  -    private static final Log LOG = LogFactory.getLog(HttpMethod.class);
  +    private static final Log LOG = LogFactory.getLog(HttpMethodBase.class);
   
       /** The User-Agent header sent on every request. */
       protected static final Header USER_AGENT;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to