Package org.apache.logging.log4j.status
Class StatusConsoleListener
java.lang.Object
org.apache.logging.log4j.status.StatusConsoleListener
- All Implemented Interfaces:
Closeable
,AutoCloseable
,EventListener
,StatusListener
StatusListener
that writes to the console.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionStatusConsoleListener
(Level level) Constructs aStatusConsoleListener
instance writing toSystem.out
using the supplied level.StatusConsoleListener
(Level level, PrintStream stream) Constructs aStatusConsoleListener
instance using the supplied level and stream.StatusConsoleListener
(Level level, PrintStream stream, SimpleLoggerFactory loggerFactory) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
private boolean
filtered
(StatusData data) Return the Log Level for which the Listener should receive events.void
log
(StatusData data) Writes status messages to the console.void
setFilters
(String... filters) Adds package name filters to exclude.void
Sets the level to a new value.
-
Field Details
-
level
-
filters
-
stream
-
logger
-
-
Constructor Details
-
StatusConsoleListener
Constructs aStatusConsoleListener
instance writing toSystem.out
using the supplied level.- Parameters:
level
- the level of status messages that should appear on the console- Throws:
NullPointerException
- on nulllevel
-
StatusConsoleListener
Constructs aStatusConsoleListener
instance using the supplied level and stream.Make sure not to use a logger stream of some sort to avoid creating an infinite loop of indirection!
- Parameters:
level
- the level of status messages that should appear on the consolestream
- the stream to write to- Throws:
NullPointerException
- on nulllevel
orstream
-
StatusConsoleListener
StatusConsoleListener(Level level, PrintStream stream, SimpleLoggerFactory loggerFactory)
-
-
Method Details
-
setLevel
Sets the level to a new value.- Parameters:
level
- The new Level.
-
getStatusLevel
Return the Log Level for which the Listener should receive events.- Specified by:
getStatusLevel
in interfaceStatusListener
- Returns:
- the Log Level.
-
log
Writes status messages to the console.- Specified by:
log
in interfaceStatusListener
- Parameters:
data
- The StatusData.
-
setFilters
Adds package name filters to exclude.- Parameters:
filters
- An array of package names to exclude.
-
filtered
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
-