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