Packages

  • package root
    Definition Classes
    root
  • package play

    Play framework.

    Play framework.

    Play

    http://www.playframework.com

    Definition Classes
    root
  • package api

    Contains the public API for Scala developers.

    Contains the public API for Scala developers.

    Read configuration
    val poolSize = configuration.getInt("engine.pool.size")
    Use the logger
    Logger.info("Hello!")
    Define a Plugin
    class MyPlugin(app: Application) extends Plugin
    Create adhoc applications (for testing)
    val application = Application(new File("."), this.getClass.getClassloader, None, Play.Mode.DEV)
    Definition Classes
    play
  • package libs

    Contains various APIs that are useful while developing web applications.

    Contains various APIs that are useful while developing web applications.

    Definition Classes
    api
  • package logback
    Definition Classes
    libs
  • ColoredLevel
  • LogbackLoggerConfigurator
c

play.api.libs.logback

LogbackLoggerConfigurator

class LogbackLoggerConfigurator extends LoggerConfigurator

Source
LogbackLoggerConfigurator.scala
Linear Supertypes
LoggerConfigurator, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LogbackLoggerConfigurator
  2. LoggerConfigurator
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LogbackLoggerConfigurator()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def configure(properties: Map[String, String], config: Option[URL]): Unit

    Configures the logger with a list of properties and an optional URL.

    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.

    Definition Classes
    LogbackLoggerConfiguratorLoggerConfigurator
  7. def configure(env: Environment, configuration: Configuration, optionalProperties: Map[String, String]): Unit

    Configures the logger with the environment and the application configuration.

    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.

    env

    the application environment

    configuration

    the application's configuration

    optionalProperties

    any optional properties (you can use Map.empty otherwise)

    Definition Classes
    LogbackLoggerConfiguratorLoggerConfigurator
  8. def configure(env: Environment): Unit

    This is a convenience method that adds no extra properties.

    This is a convenience method that adds no extra properties.

    Definition Classes
    LogbackLoggerConfiguratorLoggerConfigurator
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def init(rootPath: File, mode: Mode): Unit

    Initialize the Logger when there's no application ClassLoader available.

    Initialize the Logger when there's no application ClassLoader available.

    Definition Classes
    LogbackLoggerConfiguratorLoggerConfigurator
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def loggerFactory: ILoggerFactory

    Returns the logger factory for the configurator.

    Returns the logger factory for the configurator. Only safe to call after configuration.

    returns

    an instance of ILoggerFactory

    Definition Classes
    LogbackLoggerConfiguratorLoggerConfigurator
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def shutdown(): Unit

    Shutdown the logger infrastructure.

    Shutdown the logger infrastructure.

    Definition Classes
    LogbackLoggerConfiguratorLoggerConfigurator
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from LoggerConfigurator

Inherited from AnyRef

Inherited from Any

Ungrouped