You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-cvs@jakarta.apache.org by ce...@apache.org on 2001/09/02 23:58:27 UTC

cvs commit: jakarta-log4j/src/java/org/apache/log4j/xml/examples XPriority.java

ceki        01/09/02 14:58:27

  Modified:    build    build.xml
               docs     FAQ.html HISTORY proposal.html
               src/java/org/apache/log4j HTMLLayout.java
  Removed:     src/java/org/apache/log4j/xml/examples XPriority.java
  Log:
  - build/build.xml excludes the contents of src/java/org/apache/log4j/jmx/
  
  - Modified HTMLLayout to reflect Category --> Logger change.
  
  Revision  Changes    Path
  1.41      +1 -0      jakarta-log4j/build/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/build/build.xml,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- build.xml	2001/09/02 21:51:16	1.40
  +++ build.xml	2001/09/02 21:58:27	1.41
  @@ -141,6 +141,7 @@
                       ${stem}/gui/**,
   		    ${stem}/net/SMTPAppender.java,
                  	    ${stem}/net/JMS*.java,
  +               	    ${stem}/jmx/*.java,
                  	    ${stem}/or/MessageRenderer.java,
   		    **/pending/**" 
   	    debug="on"/>			
  
  
  
  1.12      +5 -4      jakarta-log4j/docs/FAQ.html
  
  Index: FAQ.html
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/docs/FAQ.html,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- FAQ.html	2001/08/11 15:53:50	1.11
  +++ FAQ.html	2001/09/02 21:58:27	1.12
  @@ -4,11 +4,12 @@
   </head> 
   <body bgcolor=#FFFFFF>
    
  -<h1 align=center>Frequently Asked Questions about log4j</h1>
  +<center>
  +<h1>Frequently Asked Questions about log4j</h1>
   
  -<h2 align=center>Ceki G&uuml;lc&uuml;
  -<br>May 2001</h2>
  -
  +<b>Ceki G&uuml;lc&uuml;</b> and <b>Chris Taylor</b> 
  +<h2>August 2001</h2>
  +</center>
   <ul>
   
   <li><p><a href=#whatIs>What is log4j?</a></p>
  
  
  
  1.59      +5 -1      jakarta-log4j/docs/HISTORY
  
  Index: HISTORY
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/docs/HISTORY,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- HISTORY	2001/08/14 18:39:12	1.58
  +++ HISTORY	2001/09/02 21:58:27	1.59
  @@ -13,6 +13,8 @@
      Category.assertLog.  This change was mecessary because assert is a
      language reserved word in JDK 1.4. [**]
   
  + - Added buffered IO capability to FileAppender and subclasses. [*]
  +
    - Added event reporting capability to the Hierachy class.
    
    - Added new system property "log4j.configuratorClass". This property
  @@ -27,7 +29,9 @@
      on a map instead of a stack. Moreover the MDC is automatically
      inherited by child threads under JDK 1.2 and above.
   
  - - Corrected a performance bug in the NDC class as observed by Dan Milstein. [*]
  + - Corrected a performance bug in the NDC class as observed by Dan
  +   Milstein and independently by Ray Millard. Ain't open source is
  +   cool?  [*]
   
    - Removed deprecated methods setOptions and getOptionStrings defined
      in the org.apache.log4j.spi.OptionHandler interface. This interface
  
  
  
  1.6       +1 -1      jakarta-log4j/docs/proposal.html
  
  Index: proposal.html
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/docs/proposal.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- proposal.html	2001/08/24 06:06:52	1.5
  +++ proposal.html	2001/09/02 21:58:27	1.6
  @@ -273,7 +273,7 @@
     */
     public
     <b>static</b>
  -  void <font color="#0000AA"><b>setLoggerFactory</b></font>(LogFactory factory, Object guard) 
  +  void <font color="#0000AA"><b>setLoggerFactory</b></font>(LoggerFactory factory, Object guard) 
                                                    throws IllegalArgumentException {
       if((LogManager.guard != null) && (LogManager.guard != guard)) {
         throw new IllegalArgumentException(
  
  
  
  1.24      +2 -2      jakarta-log4j/src/java/org/apache/log4j/HTMLLayout.java
  
  Index: HTMLLayout.java
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/HTMLLayout.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- HTMLLayout.java	2001/09/02 20:05:39	1.23
  +++ HTMLLayout.java	2001/09/02 21:58:27	1.24
  @@ -147,8 +147,8 @@
       }
       sbuf.append("</td>" + Layout.LINE_SEP);
   
  -    sbuf.append("<td title=\"" + event.categoryName + " category\">");
  -    sbuf.append(escapeHTMLTags(event.categoryName));
  +    sbuf.append("<td title=\"" + event.loggerName + " category\">");
  +    sbuf.append(escapeHTMLTags(event.loggerName));
       sbuf.append("</td>" + Layout.LINE_SEP);
   
       if(locationInfo) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-cvs-unsubscribe@jakarta.apache.org
For additional commands, e-mail: log4j-cvs-help@jakarta.apache.org