< prev index next >

jdk/src/java.logging/share/classes/java/util/logging/Logger.java

Print this page

        

*** 1298,1308 **** * @param level One of the message level identifiers, e.g., {@code SEVERE} * @param bundle Resource bundle to localize {@code msg}; * can be {@code null}. * @param msg The string message (or a key in the message catalog) * @param params Parameters to the message (optional, may be none). ! * @since 1.9 */ public void logrb(Level level, ResourceBundle bundle, String msg, Object... params) { if (!isLoggable(level)) { return; } --- 1298,1308 ---- * @param level One of the message level identifiers, e.g., {@code SEVERE} * @param bundle Resource bundle to localize {@code msg}; * can be {@code null}. * @param msg The string message (or a key in the message catalog) * @param params Parameters to the message (optional, may be none). ! * @since 9 */ public void logrb(Level level, ResourceBundle bundle, String msg, Object... params) { if (!isLoggable(level)) { return; }
*** 1415,1425 **** * @param level One of the message level identifiers, e.g., {@code SEVERE} * @param bundle Resource bundle to localize {@code msg}; * can be {@code null}. * @param msg The string message (or a key in the message catalog) * @param thrown Throwable associated with the log message. ! * @since 1.9 */ public void logrb(Level level, ResourceBundle bundle, String msg, Throwable thrown) { if (!isLoggable(level)) { return; --- 1415,1425 ---- * @param level One of the message level identifiers, e.g., {@code SEVERE} * @param bundle Resource bundle to localize {@code msg}; * can be {@code null}. * @param msg The string message (or a key in the message catalog) * @param thrown Throwable associated with the log message. ! * @since 9 */ public void logrb(Level level, ResourceBundle bundle, String msg, Throwable thrown) { if (!isLoggable(level)) { return;
< prev index next >