up vote 30 down vote favorite
11
share [g+] share [fb]

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 20 down vote accepted

There has been some updates on the logging front since 2009.

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.

By the way, 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.

So slf4s seems to be a good place to start, if you like the idea of plugging in the desired framework and all.

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

logback

I am not fully aware of the background, but Ceki Gülcü originally wrote log4j, and then he started SLF4J and logback as the successor to log4j. There's a page called Reasons to prefer logback over log4j.

The key points seems to be that logback is natively supports SLF4J API, and that it plays nicely at server side.

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.

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.

Logula

We also have Coda Hale's Logula.

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.

link|improve this answer
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

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

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
feedback

Your Answer

 
or
required, but never shown

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