Index: HttpClient.java
===================================================================
RCS file: /home/cvspublic/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpClient.java,v
retrieving revision 1.42
diff -c -r1.42 HttpClient.java
*** HttpClient.java	5 Jan 2002 11:15:59 -0000	1.42
--- HttpClient.java	10 Feb 2002 03:16:18 -0000
***************
*** 177,185 ****
       */
      public void startSession(String host, int port, Credentials creds,
                               boolean https) {
!         log.debug("HttpClient.startSession(String,int,Credentials,boolean): Host:" +
!                   host + " Port:" + port + " Credentials:" + creds +
!                   " HTTPS:" + https);
          getState().setCredentials(null,creds);
          connection = new HttpConnection(host,port,https);
      }
--- 177,187 ----
       */
      public void startSession(String host, int port, Credentials creds,
                               boolean https) {
!         if(log.isDebugEnabled()) {
!         	log.debug("HttpClient.startSession(String,int,Credentials,boolean): Host:" +
!                	   host + " Port:" + port + " Credentials:" + creds +
!                	   " HTTPS:" + https);
! 	}
          getState().setCredentials(null,creds);
          connection = new HttpConnection(host,port,https);
      }
***************
*** 262,268 ****
       * {@link HttpConnection connection} if any.
       */
      public void endSession() throws IOException {
!         log.debug("HttpClient.endSession()");
          if(null != connection) {
              connection.close();
              connection = null;
--- 264,272 ----
       * {@link HttpConnection connection} if any.
       */
      public void endSession() throws IOException {
!         if(log.isDebugEnabled()) {
!         	log.debug("HttpClient.endSession()");
! 	}
          if(null != connection) {
              connection.close();
              connection = null;

