All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scribe.ScribeLoggerContextFactory.scala Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package scribe

import org.apache.logging.log4j.spi.{LoggerContext, LoggerContextFactory}

import java.net.URI

class ScribeLoggerContextFactory extends LoggerContextFactory {
  override def getContext(fqcn: String,
                          loader: ClassLoader,
                          externalContext: Any,
                          currentContext: Boolean): LoggerContext = ScribeLoggerContext

  override def getContext(fqcn: String,
                          loader: ClassLoader,
                          externalContext: Any,
                          currentContext: Boolean,
                          configLocation: URI,
                          name: String): LoggerContext = ScribeLoggerContext

  override def removeContext(context: LoggerContext): Unit = {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy