< prev index next >

src/java.xml.bind/share/classes/com/sun/istack/internal/logging/Logger.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 35,45 **** * standard {@link java.util.logging.Logger} interface. * * The class also makes sure that logger names of each Metro subsystem are consistent * with each other. * ! * @author Marek Potociar <marek.potociar at sun.com> * @author Fabian Ritzmann */ public class Logger { private static final String WS_LOGGING_SUBSYSTEM_NAME_ROOT = "com.sun.metro"; --- 35,45 ---- * standard {@link java.util.logging.Logger} interface. * * The class also makes sure that logger names of each Metro subsystem are consistent * with each other. * ! * @author Marek Potociar * @author Fabian Ritzmann */ public class Logger { private static final String WS_LOGGING_SUBSYSTEM_NAME_ROOT = "com.sun.metro";
*** 333,343 **** } /** * Method logs {@code exception}'s message as a {@code SEVERE} logging level * message. ! * <p/> * If {@code cause} parameter is not {@code null}, it is logged as well and * {@code exception} original cause is initialized with instance referenced * by {@code cause} parameter. * * @param exception exception whose message should be logged. Must not be --- 333,343 ---- } /** * Method logs {@code exception}'s message as a {@code SEVERE} logging level * message. ! * <p> * If {@code cause} parameter is not {@code null}, it is logged as well and * {@code exception} original cause is initialized with instance referenced * by {@code cause} parameter. * * @param exception exception whose message should be logged. Must not be
*** 361,371 **** } /** * Method logs {@code exception}'s message as a {@code SEVERE} logging level * message. ! * <p/> * If {@code logCause} parameter is {@code true}, {@code exception}'s original * cause is logged as well (if exists). This may be used in cases when * {@code exception}'s class provides constructor to initialize the original * cause. In such case you do not need to use * {@link #logSevereException(Throwable, Throwable)} --- 361,371 ---- } /** * Method logs {@code exception}'s message as a {@code SEVERE} logging level * message. ! * <p> * If {@code logCause} parameter is {@code true}, {@code exception}'s original * cause is logged as well (if exists). This may be used in cases when * {@code exception}'s class provides constructor to initialize the original * cause. In such case you do not need to use * {@link #logSevereException(Throwable, Throwable)}
*** 406,416 **** } /** * Method logs {@code exception}'s message at the logging level specified by the * {@code level} argument. ! * <p/> * If {@code cause} parameter is not {@code null}, it is logged as well and * {@code exception} original cause is initialized with instance referenced * by {@code cause} parameter. * * @param exception exception whose message should be logged. Must not be --- 406,416 ---- } /** * Method logs {@code exception}'s message at the logging level specified by the * {@code level} argument. ! * <p> * If {@code cause} parameter is not {@code null}, it is logged as well and * {@code exception} original cause is initialized with instance referenced * by {@code cause} parameter. * * @param exception exception whose message should be logged. Must not be
*** 435,445 **** } /** * Method logs {@code exception}'s message at the logging level specified by the * {@code level} argument. ! * <p/> * If {@code logCause} parameter is {@code true}, {@code exception}'s original * cause is logged as well (if exists). This may be used in cases when * {@code exception}'s class provides constructor to initialize the original * cause. In such case you do not need to use * {@link #logException(Throwable, Throwable, Level) logException(exception, cause, level)} --- 435,445 ---- } /** * Method logs {@code exception}'s message at the logging level specified by the * {@code level} argument. ! * <p> * If {@code logCause} parameter is {@code true}, {@code exception}'s original * cause is logged as well (if exists). This may be used in cases when * {@code exception}'s class provides constructor to initialize the original * cause. In such case you do not need to use * {@link #logException(Throwable, Throwable, Level) logException(exception, cause, level)}
< prev index next >