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:
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)