Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 63187 invoked from network); 3 Oct 2002 02:08:03 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 3 Oct 2002 02:08:03 -0000 Received: (qmail 19204 invoked by uid 97); 3 Oct 2002 02:08:51 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@jakarta.apache.org Received: (qmail 19158 invoked by uid 97); 3 Oct 2002 02:08:50 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 19147 invoked by uid 97); 3 Oct 2002 02:08:50 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Date: 3 Oct 2002 02:07:55 -0000 Message-ID: <20021003020755.8213.qmail@icarus.apache.org> From: jsdever@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/httpclient/xdocs logging.xml news.xml status.xml X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jsdever 2002/10/02 19:07:55 Modified: httpclient/xdocs logging.xml news.xml status.xml Log: Announce new httpclient-dev mailing list. Documentation updates. Revision Changes Path 1.4 +7 -3 jakarta-commons/httpclient/xdocs/logging.xml Index: logging.xml =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/logging.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- logging.xml 8 Aug 2002 01:56:44 -0000 1.3 +++ logging.xml 3 Oct 2002 02:07:54 -0000 1.4 @@ -18,13 +18,14 @@ Commons Logging configuration, HttpClient can be configured for a variety of logging behaviours.

+

There are two specific types of loggers used within HttpClient: the standard log used for each class and the wireLog used for wire messages. Commons Logging allows for various logging systems to do the actual output. The most basic is SimpleLog which uses stdout to write log messages. All the following examples are shown with - SimpleLog to highlight the utility withing HttpClient + SimpleLog to highlight the utility within HttpClient

log
The logging output can be configured on a class by class basis if @@ -33,7 +34,10 @@ information on authentication routines, you could turn up the logging level for the Authenticator by setting the following property:
- org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient.Authenticator=trace + org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient.Authenticator=trace
+ The default log level for all classes can be set to a default by + using the following:
+ org.apache.commons.logging.simplelog.defaultlog=info

wireLog
There is one log that cuts across several classes that is used for 1.6 +11 -1 jakarta-commons/httpclient/xdocs/news.xml Index: news.xml =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/news.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- news.xml 19 Jul 2002 22:32:45 -0000 1.5 +++ news.xml 3 Oct 2002 02:07:54 -0000 1.6 @@ -9,6 +9,16 @@ +

+

There has been so much traffic on the commons-dev mailing list + specific to HttpClient, that a new mailing list was created + to partition the traffic. If you wish to subscribe to this new + mailing list, you can send mail to + + httpclient-dev@jakarta.apache.org +

+
+

The HttpClient project has go through some very active development leading up to Alpha 1 last year, but unfortunately 1.13 +5 -22 jakarta-commons/httpclient/xdocs/status.xml Index: status.xml =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/status.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- status.xml 19 Sep 2002 15:13:54 -0000 1.12 +++ status.xml 3 Oct 2002 02:07:55 -0000 1.13 @@ -88,16 +88,16 @@

  • Jeff Dever
  • dIon Gillard
  • +
  • Ortwin Gl�ck
  • +
  • Sung-Gu Park
  • Marc A. Saegesser
  • Rodney Waldhoff
  • -
  • Ortwin Gl�ck
  • @@ -109,7 +109,8 @@ Like to help? The team has identified the following action items. To volunteer for a task, add your name to the list below, or send an email to - commons-dev@jakarta.apache.org. + + httpclient-dev@jakarta.apache.org.

    @@ -123,24 +124,6 @@ - - - - - - - - - - -- To unsubscribe, e-mail: For additional commands, e-mail:
    Documentation Additional documentation is always welcome. -  
    - Convert to commons-logging - HttpClient's logging API has become its own commons component. - Migrate HttpClient to use commons-logging, and remove the old - HttpClient-packaged version. -  
    - Digest Authentication - Add support for Digest authentication to the Authenticator class.