What is a good way to do logging in a Scala application? Something that is consistent with the language philosophy, does not clutter the code, and is low-maintenance and unobtrusive. Here's a basic requirement list:

  • simple
  • does not clutter the code. Scala is great for its brevity. I don't want half of my code to be logging statements
  • log format can be changed to fit the rest of my enterprise logs and monitoring software
  • supports levels of logging (ie debug, trace, error)
  • can log to disk as well as other destinations (i.e. socket, console, etc.)
  • minimum configuration, if any
  • works in containers (ie, web server)
  • (optional, but nice to have) comes either as part of the language or as a maven artifact, so I don't have to hack my builds to use it

I know I can use the existing Java logging solutions, but they fail on at least two of the above, namely clutter and configuration.

Thanks for your replies.

link|improve this question

feedback

7 Answers

up vote 24 down vote accepted

All of Scala's logging libraries as of March 2012 are wrappers of one of three Java logging frameworks: log4j, slf4j, and java.util.logging. There are almost no difference among the libraries in terms of the logging methods. They provide some sort of log object to which you can call info(...), debug(...), etc.

The main differences are the way the loggers are configured.

log4j wrappers

Logula

Coda Hale's Logula, what I like the best to write logs in Scala today.

Logula is a Scala library which provides a sane log output format and an easy-to-use mixin for adding logging to your code.

It's a thin front-end for log4j 1.2 because java.util.logging was a pain in the neck to deal with.

It's easy to use. The configuration is done via code instead of some config file, which means I can change log level to TRACE if the user picks verbose option.

slf4j wrappers

Here's the description of SLF4J:

The Simple Logging Facade for Java or (SLF4J) serves as a simple facade or abstraction for various logging frameworks, e.g. java.util.logging, log4j and logback, allowing the end user to plug in the desired logging framework at deployment time.

To me the ability to change underlying log library at deployment time sounds like a bad gimmick. Because of it the entire slf4j family of loggers suffer from some issues.

First, is the "classpath as configuration" approach. The way slf4j knows which underlying logging library you are using is by loading a class by some name. I've had issues in which slf4j not recognizing my logger when classloader was customized.

Second, because the "simple facade" tries to be the common denominator, it's limited only to actual log calls. In other words, the configuration cannot be done via the code.

slf4s

slf4s by Heiko Seeberger is a simple Scala facade for SLF4J.

  • Logging trait to easily mix in a Logger initialized with the class name
  • By-name parameters on log methods for better performance
  • OSGi compliant

This looks similar to the Lift's logger, but in standalone library.

logback

logback, written by Ceki Gülcü who also wrote SLF4J and log4j, is the standard implementation of SLF4J. There's a page called Reasons to prefer logback over log4j. The key points seems to be that it plays nicely at server side.

Grizzled SLF4J

Brian Clapper also wrote a SLF4J wrapper called Grizzled SLF4J.

The Grizzled SLF4J package provides a very thin Scala-friendly layer on top of the SLF4J (Simple Logging Façade for Java) API. It is released under a BSD license.

AVSL (A Very Simple Logger)

As a backend to SLF4J API, Brian Clapper wrote AVSL.

“AVSL” stands for “A Very Simple Logger”, and AVSL strives for simplicity in several ways.

  • AVSL is simple to configure, using a non-XML, INI-style configuration file that’s reminiscent of the Python logging module’s configuration. This simpler configuration file is easier to read and edit than the XML configuration files used by logging frameworks such as Logback. (Since I dislike XML configuration files, this is big win for me.)
  • AVSL is a lightweight logging framework. It is intended to be used primarily in standalone programs, not enterprise applications. It may work fine for your enterprise application, of course; but, if it doesn’t, you can easily switch to something else.
  • The default message formatter uses a simpler, more compact syntax than Java’s SimpleDateFormat, relying on strftime-like escapes.

loglady

loglady that came out 2012 is a thin wrapper around SLF4J, providing a simple API similar to Python's logging module. Main feature lists:

  • No configuration

java.util.logging wrappers

configgy is gone

configgy, probably still used by many, is now officially declared deprecated.

what's twitter doing?

Now that configgy is gone, what's twitter doing? Util-logging.

Util-logging is a small wrapper around java's builtin logging to make it more scala-friendly.

There's no config file because it's loaded from scala file using ostrich, which I don't fully understand but that's what it says.

Misc

zero-log

zero-log came out 2012. Designed to be fast and simpler. Cost for disabled logs can be exactly zero. (I've never used this so I don't have an opinion about this one)

link|improve this answer
Gotta say, I love Logula...finally a logger that doesn't make me want to stab screwdriver up my ear. No xml and no BS, just a scala config on startup – Arg Feb 22 at 19:35
feedback

Using slf4j and a wrapper is nice but the use of it's built in interpolation breaks down when you have more than two values to interpolate, since then you need to create an Array of values to interpolate.

A more Scala like solution is to use a thunk or cluster to delay the concatenation of the error message. A good example of this is Lift's logger

Log.scala Slf4jLog.scala

Which looks like this:

class Log4JLogger(val logger: Logger) extends LiftLogger {
  override def trace(msg: => AnyRef) = if (isTraceEnabled) logger.trace(msg)
}

Note that msg is a call-by-name and won't be evaluated unless isTraceEnabled is true so there's no cost in generating a nice message string. This works around the slf4j's interpolation mechanism which requires parsing the error message. With this model, you can interpolate any number of values into the error message.

If you have a separate trait that mixes this Log4JLogger into your class, then you can do

trace("The foobar from " + a + " doesn't match the foobar from " +
      b + " and you should reset the baz from " + c")

instead of

info("The foobar from {0} doesn't match the foobar from {1} and you should reset the baz from {c},
     Array(a, b, c))
link|improve this answer
1  
is it possible to get accurate line numbers for logging statements in scala classes????? – orange80 Jan 29 '11 at 7:58
feedback

I pulled a bit of work form the Logging trait of scalax, and created a trait that also integrated a MessageFormat-based library.

Then stuff kind of looks like this:

class Foo extends Loggable {
    info( "Dude, I'm an {0} with {1,number,#}", "Log message", 1234 )
}

We like the approach so far.

Implementation:

trait Loggable {

    val logger:Logger = Logging.getLogger(this)

    def checkFormat(msg:String, refs:Seq[Any]):String =
    	if (refs.size > 0) msgfmtSeq(msg, refs) else msg 

    def trace(msg:String, refs:Any*) = logger trace checkFormat(msg, refs)

    def trace(t:Throwable, msg:String, refs:Any*) = logger trace (checkFormat(msg, refs), t)

    def info(msg:String, refs:Any*) = logger info checkFormat(msg, refs)

    def info(t:Throwable, msg:String, refs:Any*) = logger info (checkFormat(msg, refs), t)

    def warn(msg:String, refs:Any*) = logger warn checkFormat(msg, refs)

    def warn(t:Throwable, msg:String, refs:Any*) = logger warn (checkFormat(msg, refs), t)

    def critical(msg:String, refs:Any*) = logger error checkFormat(msg, refs)

    def critical(t:Throwable, msg:String, refs:Any*) = logger error (checkFormat(msg, refs), t)

}

/**
 * Note: implementation taken from scalax.logging API
 */
object Logging {  

    def loggerNameForClass(className: String) = {  
        if (className endsWith "$") className.substring(0, className.length - 1)  
        else className  
    }  

    def getLogger(logging: AnyRef) = LoggerFactory.getLogger(loggerNameForClass(logging.getClass.getName))  
}
link|improve this answer
Cute, though I'm having some issues getting this to work -- specifically, the output (on default slf4j configuration) always looks something like the following, instead of the class actually extending Loggable: Jul 22, 2011 3:02:17 AM redacted.util.Loggable$class info INFO: Some message... Any chance you've ran into this? – Tomer Gabel Jul 22 '11 at 0:09
feedback

Haven't tried it yet, but Configgy looks promising for both configuration and logging:

http://github.com/robey/configgy/tree/master

link|improve this answer
feedback

You should have a look at the scalax library : http://scalax.scalaforge.org/ In this library, there is a Logging trait, using sl4j as backend. By using this trait, you can log quite easily (just use the logger field in the class inheriting the trait).

link|improve this answer
feedback

Writer, Monoid and a Monad implementation.

link|improve this answer
3  
Can you explain what you mean? – David James Aug 15 '11 at 17:41
Combination of those could create a nice "log" attach to your result. IMO, it is a little bit overkill. But if you want to learn something new blog.tmorris.net/the-writer-monad-using-scala-example – Tg. Feb 3 at 4:43
feedback

After using slf4s and logula for a while, I wrote loglady, a simple logging trait wrapping slf4j.

It offers an API similar to that of Python's logging library, which makes the common cases (basic string, simple formatting) trivial and avoids formatting boilerplate.

http://github.com/dln/loglady/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.