scala-logging-slf4j


License

License

Categories

Categories

Scala Languages Logging Application Layer Libs SLF4J
GroupId

GroupId

com.typesafe.scala-logging
ArtifactId

ArtifactId

scala-logging-slf4j_2.11
Last Version

Last Version

2.1.2
Release Date

Release Date

Type

Type

jar
Description

Description

scala-logging-slf4j
scala-logging-slf4j
Project URL

Project URL

https://github.com/typesafehub/scala-logging
Project Organization

Project Organization

com.typesafe.scala-logging
Source Code Management

Source Code Management

https://github.com/typesafehub/scala-logging

Download scala-logging-slf4j_2.11

How to add to project

<!-- https://jarcasting.com/artifacts/com.typesafe.scala-logging/scala-logging-slf4j_2.11/ -->
<dependency>
    <groupId>com.typesafe.scala-logging</groupId>
    <artifactId>scala-logging-slf4j_2.11</artifactId>
    <version>2.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.typesafe.scala-logging/scala-logging-slf4j_2.11/
implementation 'com.typesafe.scala-logging:scala-logging-slf4j_2.11:2.1.2'
// https://jarcasting.com/artifacts/com.typesafe.scala-logging/scala-logging-slf4j_2.11/
implementation ("com.typesafe.scala-logging:scala-logging-slf4j_2.11:2.1.2")
'com.typesafe.scala-logging:scala-logging-slf4j_2.11:jar:2.1.2'
<dependency org="com.typesafe.scala-logging" name="scala-logging-slf4j_2.11" rev="2.1.2">
  <artifact name="scala-logging-slf4j_2.11" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.typesafe.scala-logging', module='scala-logging-slf4j_2.11', version='2.1.2')
)
libraryDependencies += "com.typesafe.scala-logging" % "scala-logging-slf4j_2.11" % "2.1.2"
[com.typesafe.scala-logging/scala-logging-slf4j_2.11 "2.1.2"]

Dependencies

compile (4)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.0
com.typesafe.scala-logging : scala-logging-api_2.11 jar 2.1.2
org.scala-lang : scala-reflect jar 2.11.0
org.slf4j : slf4j-api jar 1.7.7

test (3)

Group / Artifact Type Version
org.scalatest : scalatest_2.11 jar 2.1.3
org.mockito : mockito-all jar 1.9.5
ch.qos.logback : logback-classic jar 1.1.2

Project Modules

There are no modules declared in this project.

scala-logging Build Status

Scala Logging is a convenient and fast logging library wrapping SLF4J.

It's convenient, because you can simply call log methods, without checking whether the respective log level is enabled:

logger.debug(s"Some $expensive message!")

It's fast, because thanks to Scala macros the check-enabled-idiom is applied and the following code is generated:

if (logger.isDebugEnabled) logger.debug(s"Some $expensive message!")

Prerequisites

  • Java 6 or higher
  • Scala 2.11, 2.12 or 2.13
  • Logging backend compatible with SLF4J

A compatible logging backend is Logback, add it to your sbt build definition:

libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"

If you are looking for a version compatible with Scala 2.10, check out Scala Logging 2.x.

Getting Scala Logging

Scala Logging is published to Sonatype OSS and Maven Central:

  • Group id / organization: com.typesafe.scala-logging
  • Artifact id / name: scala-logging
  • Latest version is 3.9.2

Usage with SBT, adding a dependency to the latest version of Scala Logging to your sbt build definition file:

libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.2"

Using Scala Logging

The Logger class from the com.typesafe.scalalogging package wraps an underlying SLF4J logger. In order to create a Logger, you pass a name to the apply factory method defined in the Logger companion object:

val logger = Logger("name")

Or, you pass in a SLF4J logger instance:

val logger = Logger(LoggerFactory.getLogger("name"))

Or, you pass in a class:

val logger = Logger(classOf[MyClass])

Or, using the runtime class wrapped by the implicit class tag parameter:

val logger = Logger[MyClass]

The LazyLogging and StrictLogging traits from the com.typesafe.scalalogging package define the logger member as a lazy or strict value respectively. In both cases the underlying SLF4J logger is named according to the class into which these traits are mixed:

class MyClass extends LazyLogging {
  logger.debug("This is very convenient ;-)")
  
  logger.whenDebugEnabled {
    println("This would only execute when the debug level is enabled.")
    (1 to 10).foreach(x => println("Scala logging is great!"))
  }
}

LoggerTakingImplicit provides the same methods as Logger class, but with additional implicit parameter A. During creation of the LoggerTakingImplicit evidence CanLog[A] is required. It may be useful when contextual parameter (e.g. Correlation ID) is being passed around and you would like to include it in the log messages:

case class CorrelationId(value: String)
implicit case object CanLogCorrelationId extends CanLog[CorrelationId] {
  override def logMessage(originalMsg: String, a: CorrelationId): String = s"${a.value} $originalMsg"
}
 
implicit val correlationId = CorrelationId("ID") 
 
val logger = Logger.takingImplicit[CorrelationId]("test")
logger.info("Test") // takes implicit correlationId and logs "ID Test"

It's possible to use MDC through CanLog without any troubles with execution context.

case class CorrelationId(value: String)
implicit case object CanLogCorrelationId extends CanLog[CorrelationId] {
  override def logMessage(originalMsg: String, a: CorrelationId): String = {
    MDC.put("correlationId", a.value)
    originalMsg
  }
  
  override def afterLog(a: CorrelationId): Unit = {
    MDC.remove("correlationId")
  }
}
 
implicit val correlationId = CorrelationId("ID") 
 
val logger = Logger.takingImplicit[CorrelationId]("test")

def serviceMethod(implicit correlationId: CorrelationId): Future[Result] = {
  dbCall.map { value => 
    logger.trace(s"Received value $value from db") // takes implicit correlationId
    toResult(value)
  }
}

What's new?

3.9.2

  • Use marker inside macros in is*Enabled methods

3.9.0

  • Functions for on demand code execution added in Logger class

3.8.0

  • Added LoggerTakingImplicit, bugfixes.

3.7.2

  • Make logger to consume args of type Any with slf4 interpolator.

3.7.1

  • Remove @volatile from lazy logger, failing with strict compiler settings
3.7.0
  • Deconstruct Scala's string interpolation into SLF4J string interpolation.
3.6.0 - flawed release
3.5.0
  • More Logger factory methods, bugfixes and upgrades, published for Scala 2.12.0-M5, 2.12.0-RC1, 2.12.0-RC2 and 2.12.0.
3.4.0
  • Fixes #38 - Logger.info() cannot be used with primitive types.
3.3.0
  • Fixes #42 - Request: Add Logger(class). README changes.
3.2.0
  • SLF4J loggers and our Logger now survive serialization. By survive serialization, we mean that the deserialized logger instances are fully functional.

String Interpolation

It is idiomatic to use Scala's string interpolation logger.error(s"log $value") instead of SLF4J string interpolation logger.error("log {}", value). However there are some tools (such as Sentry) that use the log message format as grouping key. Therefore they do not work well with Scala's string interpolation.

Scala Logging replaces simple string interpolations with their SLF4J counterparts like this:

logger.error(s"my log message: $arg1 $arg2 $arg3")
logger.error("my log message: {} {} {}", arg1, arg2, arg3)

This has no effect on behavior and performace should be comparable (depends on the underlying logging library).

Limitations

  • Works only when string interpolation is directly used inside the logging statement. That is when the log message is static (available at compile time).
  • Works only for the logger.<level>(message) and logger.<level>(marker, message) logging methods. It does not work if you want to log an exception and use string interpolation too (this is a limitation of the SLF4J API).

Line numbers in log message?

Using the sourcecode library, it's possible to add line number information (especially useful for debugging):

def foo(arg: String)(implicit line: sourcecode.Line, file: sourcecode.File) = {
  ... do something with arg ...
  ... do something with file.value ...
}

foo("hello") // the implicit sourcecode.File is filled in automatically

Contribution policy

Contributions via GitHub pull requests are gladly accepted from their original author. Before we can accept pull requests, you will need to agree to the Typesafe Contributor License Agreement online, using your GitHub account.

License

This code is open source software licensed under the Apache 2.0 License.

com.typesafe.scala-logging

Lightbend (Typesafe archive)

Archive of projects previously hosted under Typesafe; See the Lightbend organization for active projects

Versions

Version
2.1.2
2.1.1
2.1.0
2.0.4
2.0.3