#100068: More references to the NetBeans logging guide java_tasklist_89600_t2b_b java_tasklist_89600_t2b_c mkleint_93509_root wsdlui_performance_root
authorjtulach@netbeans.org
Fri, 06 Apr 2007 15:17:03 +0000
changeset 270e9ad9bf61658
parent 269 3deff9c96c67
child 271 a7af3773025e
#100068: More references to the NetBeans logging guide
openide.util/apichanges.xml
openide.util/src/org/openide/ErrorManager.java
openide.util/src/org/openide/util/Exceptions.java
     1.1 --- a/openide.util/apichanges.xml	Wed Apr 04 16:40:21 2007 +0000
     1.2 +++ b/openide.util/apichanges.xml	Fri Apr 06 15:17:03 2007 +0000
     1.3 @@ -215,8 +215,8 @@
     1.4            is no longer the recommended way to do logging in NetBeans based
     1.5            application. Instead NetBeans now fully support logging two JDK's
     1.6            standard <a href="@JDK@/java/util/logging/Logger.html">Logger</a>.
     1.7 -          See logging
     1.8 -          <a href="@TOP@/org/openide/util/doc-files/logging.html">tutorial</a>
     1.9 +          See the
    1.10 +          <a href="@TOP@/org/openide/util/doc-files/logging.html">NetBeans logging guide</a>
    1.11            to learn the best practises for logging in NetBeans.
    1.12            <br/>
    1.13            <a href="@TOP@/org/openide/ErrorManager.html">ErrorManager</a>
     2.1 --- a/openide.util/src/org/openide/ErrorManager.java	Wed Apr 04 16:40:21 2007 +0000
     2.2 +++ b/openide.util/src/org/openide/ErrorManager.java	Fri Apr 06 15:17:03 2007 +0000
     2.3 @@ -45,7 +45,8 @@
     2.4  
     2.5  /**
     2.6   * A more or less <em>deprecated</em> system of managing, annotating, and classifying errors
     2.7 - *  and log messages.
     2.8 + *  and log messages. Instead of <code>ErrorManager</code> use
     2.9 + * {@link Logger} as described in <a href="@TOP@/org/openide/util/doc-files/logging.html">NetBeans logging guide</a>.
    2.10   * <p>
    2.11   * Rather then using the {@link ErrorManager} consider using JDK's {@link Logger}
    2.12   * for reporting log events, unwanted exceptions, etc.  The methods
     3.1 --- a/openide.util/src/org/openide/util/Exceptions.java	Wed Apr 04 16:40:21 2007 +0000
     3.2 +++ b/openide.util/src/org/openide/util/Exceptions.java	Fri Apr 06 15:17:03 2007 +0000
     3.3 @@ -34,9 +34,11 @@
     3.4  import java.util.logging.Logger;
     3.5  
     3.6  
     3.7 -/** Useful utility and methods to work with exceptions.
     3.8 +/** Useful utility and methods to work with exceptions as
     3.9 + * described in detail in the  <a href="@TOP@/org/openide/util/doc-files/logging.html">NetBeans logging guide</a>.
    3.10   * Allows to annotate exceptions with messages, extract such messages
    3.11   * and provides a common utility method to report an exception.
    3.12 + * 
    3.13   *
    3.14   * @since 7.2
    3.15   */