bug 59933: demote accessibility of NullLogger methods to the same level as POILogger

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1761662 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-09-21 02:12:54 +00:00
parent b44d6ec062
commit ad8506b7f5
2 changed files with 12 additions and 2 deletions

View File

@ -23,6 +23,7 @@ package org.apache.poi.util;
* calls as cheap as possible by performing lazy evaluation of the log
* message.<p>
*/
@Internal
public class NullLogger extends POILogger {
@Override
public void initialize(final String cat) {
@ -37,7 +38,7 @@ public class NullLogger extends POILogger {
*/
@Override
public void log(final int level, final Object obj1) {
protected void log(final int level, final Object obj1) {
// do nothing
}
@ -49,7 +50,7 @@ public class NullLogger extends POILogger {
* @param exception An exception to be logged
*/
@Override
public void log(int level, Object obj1, final Throwable exception) {
protected void log(int level, Object obj1, final Throwable exception) {
// do nothing
}

View File

@ -68,6 +68,15 @@ public abstract class POILogger {
/**
* Check if a logger is enabled to log at the specified level
* This allows code to avoid building strings or evaluating functions in
* the arguments to log.
*
* An example:
* <code><pre>
* if (logger.check(POILogger.INFO)) {
* logger.log(POILogger.INFO, "Avoid concatenating " + " strings and evaluating " + functions());
* }
* </pre></code>
*
* @param level One of DEBUG, INFO, WARN, ERROR, FATAL
*/