Package

skinny

logging

Permalink

package logging

Visibility
  1. Public
  2. All

Type Members

  1. class Logger extends AnyRef

    Permalink

    Scala front-end to a SLF4J logger.

  2. trait LoggerProvider extends AnyRef

    Permalink
  3. trait Logging extends LoggerProvider with LoggingDsl

    Permalink

    Mix the Logging trait into a class to get:

    Mix the Logging trait into a class to get:

    - Logging methods - A Logger object, accessible via the log property

    Does not affect the public API of the class mixing it in.

  4. trait LoggingDsl extends AnyRef

    Permalink
  5. trait TimeLogging extends LoggerProvider

    Permalink

    Time logging for the block.

    Time logging for the block.

    class RootController extends ApplicationController {
    def doSomething = {
    Thread.sleep(10)
    "AAAA"
    }
    
    def index = {
    val result = warnElapsedTime(1) {
    doSomething
    }
    render("/root/index")
    }

Value Members

  1. object Logger

    Permalink

    A factory for retrieving an SLF4JLogger.

  2. object TimeLogging extends TimeLogging

    Permalink

Ungrouped