Package play
Interface LoggerConfigurator
- All Superinterfaces:
play.api.LoggerConfigurator
public interface LoggerConfigurator
extends play.api.LoggerConfigurator
Runs through underlying logger configuration.
-
Method Summary
Modifier and TypeMethodDescriptionstatic Optional<LoggerConfigurator>apply(ClassLoader classLoader) voidConfigures the logger with a list of properties and an optional URL.default voidconfigure(play.api.Environment env) default voidconfigure(play.api.Environment env, play.api.Configuration configuration, scala.collection.immutable.Map<String, String> optionalProperties) voidconfigure(Environment env) This is a convenience method that adds no extra properties.default voidconfigure(Environment env, com.typesafe.config.Config configuration) Configures the logger with the environment and the application configuration.voidconfigure(Environment env, com.typesafe.config.Config configuration, Map<String, String> optionalProperties) Configures the logger with the environment, the application configuration and additional properties.default voidgenerateProperties(Environment env, com.typesafe.config.Config config, Map<String, String> optionalProperties) default voidvoidInitialize the Logger when there's no application ClassLoader available.org.slf4j.ILoggerFactoryReturns the logger factory for the configurator.voidshutdown()Shutdown the logger infrastructure.
-
Method Details
-
init
Initialize the Logger when there's no application ClassLoader available.- Parameters:
rootPath- the root pathmode- the ode
-
init
- Specified by:
initin interfaceplay.api.LoggerConfigurator
-
configure
This is a convenience method that adds no extra properties.- Parameters:
env- the environment.
-
configure
default void configure(play.api.Environment env) - Specified by:
configurein interfaceplay.api.LoggerConfigurator
-
configure
Configures the logger with the environment and the application configuration.This is what full applications will run, and the place to put extra properties, either through optionalProperties or by setting configuration properties and having "play.logger.includeConfigProperties=true" in the config.
- Parameters:
env- the application environmentconfiguration- the application's configuration
-
configure
void configure(Environment env, com.typesafe.config.Config configuration, Map<String, String> optionalProperties) Configures the logger with the environment, the application configuration and additional properties.This is what full applications will run, and the place to put extra properties, either through optionalProperties or by setting configuration properties and having "play.logger.includeConfigProperties=true" in the config.
- Parameters:
env- the application environmentconfiguration- the application's configurationoptionalProperties- any optional properties (you can use an empty Map otherwise)
-
configure
default void configure(play.api.Environment env, play.api.Configuration configuration, scala.collection.immutable.Map<String, String> optionalProperties) - Specified by:
configurein interfaceplay.api.LoggerConfigurator
-
configure
Configures the logger with a list of properties and an optional URL.This is the engine's entrypoint method that has all the properties pre-assembled.
- Parameters:
properties- the propertiesconfig- the configuration URL
-
configure
default void configure(scala.collection.immutable.Map<String, String> properties, scala.Option<URL> config) - Specified by:
configurein interfaceplay.api.LoggerConfigurator
-
loggerFactory
org.slf4j.ILoggerFactory loggerFactory()Returns the logger factory for the configurator. Only safe to call after configuration.- Specified by:
loggerFactoryin interfaceplay.api.LoggerConfigurator- Returns:
- an instance of ILoggerFactory
-
shutdown
void shutdown()Shutdown the logger infrastructure.- Specified by:
shutdownin interfaceplay.api.LoggerConfigurator
-
apply
-
generateProperties
-