Class Log4jLoggingSystem
java.lang.Object
io.micronaut.management.endpoint.loggers.impl.Log4jLoggingSystem
- All Implemented Interfaces:
io.micronaut.logging.LoggingSystem,ManagedLoggingSystem
@Singleton
@Requires(beans=LoggersEndpoint.class) @Requires(classes=org.apache.logging.log4j.core.LoggerContext.class)
@Replaces(io.micronaut.logging.impl.Log4jLoggingSystem.class)
public class Log4jLoggingSystem
extends Object
implements ManagedLoggingSystem, io.micronaut.logging.LoggingSystem
An implementation of
ManagedLoggingSystem that works with logback.- Since:
- 2.2.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@NonNull LoggerConfigurationReturns aLoggerConfigurationfor the logger found by name (or created if not found).@NonNull Collection<LoggerConfiguration>Returns all existing loggers.voidsetLogLevel(String name, io.micronaut.logging.LogLevel level) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.micronaut.logging.LoggingSystem
refresh
-
Constructor Details
-
Log4jLoggingSystem
public Log4jLoggingSystem()
-
-
Method Details
-
getLoggers
Description copied from interface:ManagedLoggingSystemReturns all existing loggers.- Specified by:
getLoggersin interfaceManagedLoggingSystem- Returns:
- A
CollectionofLoggerConfigurationinstances for all existing loggers
-
getLogger
Description copied from interface:ManagedLoggingSystemReturns aLoggerConfigurationfor the logger found by name (or created if not found).- Specified by:
getLoggerin interfaceManagedLoggingSystem- Parameters:
name- the logger name- Returns:
- the logger configuration
-
setLogLevel
- Specified by:
setLogLevelin interfaceio.micronaut.logging.LoggingSystem
-