Logging in Scala - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T17:36:53Z http://stackoverflow.com/feeds/question/978252 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/978252/logging-in-scala 3 Logging in Scala George 2009-06-10T21:28:17Z 2009-06-12T23:18:20Z <p>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:</p> <ul> <li>simple</li> <li>does not clutter the code. Scala is great for its brevity. I don't want half of my code to be logging statements</li> <li>log format can be changed to fit the rest of my enterprise logs and monitoring software</li> <li>supports levels of logging (ie debug, trace, error)</li> <li>can log to disk as well as other destinations (i.e. socket, console, etc.)</li> <li>minimum configuration, if any</li> <li>works in containers (ie, web server)</li> <li>(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</li> </ul> <p>I know I can use the existing Java logging solutions, but they fail on at least two of the above, namely clutter and configuration.</p> <p>Thanks for your replies.</p> http://stackoverflow.com/questions/978252/logging-in-scala/978262#978262 0 Answer by eed3si9n for Logging in Scala eed3si9n 2009-06-10T21:32:37Z 2009-06-10T21:38:02Z <p>There's a trait called <a href="http://www.scala-lang.org/docu/files/api/scala/util/logging/Logged.html" rel="nofollow">Logged</a>, which <a href="http://www.scala-lang.org/docu/files/api/scala/util/logging/ConsoleLogger.html" rel="nofollow">ConsoleLogger</a> extends. Not sure if this is sufficient, but using traits sounds like the way to go.</p> http://stackoverflow.com/questions/978252/logging-in-scala/979977#979977 0 Answer by Gilles for Logging in Scala Gilles 2009-06-11T08:33:05Z 2009-06-11T08:33:05Z <p>You should have a look at the scalax library : <a href="http://scalax.scalaforge.org/" rel="nofollow">http://scalax.scalaforge.org/</a> 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).</p> http://stackoverflow.com/questions/978252/logging-in-scala/980822#980822 1 Answer by dberesford for Logging in Scala dberesford 2009-06-11T12:32:59Z 2009-06-11T12:32:59Z <p>Haven't tried it yet, bug Configgy looks promising for both configuration and logging: </p> <p><a href="http://github.com/robey/configgy/tree/master" rel="nofollow">http://github.com/robey/configgy/tree/master</a></p> http://stackoverflow.com/questions/978252/logging-in-scala/981942#981942 1 Answer by Tristan Juricek for Logging in Scala Tristan Juricek 2009-06-11T15:50:19Z 2009-06-11T15:50:19Z <p>I pulled a bit of work form the <code>Logging</code> trait of <code>scalax</code>, and created a trait that also integrated a <code>MessageFormat-based</code> library.</p> <p>Then stuff kind of looks like this:</p> <pre><code>class Foo extends Loggable { info( "Dude, I'm an {0} with {1,number,#}", "Log message", 1234 ) } </code></pre> <p>We like the approach so far.</p> <p>Implementation:</p> <pre><code>trait Loggable { val logger:Logger = Logging.getLogger(this) def checkFormat(msg:String, refs:Seq[Any]):String = if (refs.size &gt; 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)) } </code></pre> http://stackoverflow.com/questions/978252/logging-in-scala/989479#989479 2 Answer by Blair Zajac for Logging in Scala Blair Zajac 2009-06-12T23:18:20Z 2009-06-12T23:18:20Z <p>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 two interpolate, since then you need to create an Array of values to interpolate.</p> <p>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</p> <p><a href="http://github.com/dpp/liftweb/blob/fe26cc3bff335b4f428194cf4c2e7f6818fb0cbe/lift-util/src/main/scala/net/liftweb/util/Log.scala" rel="nofollow">Log.scala</a> <a href="http://github.com/dpp/liftweb/blob/fe26cc3bff335b4f428194cf4c2e7f6818fb0cbe/lift-util/src/main/scala/net/liftweb/util/Slf4jLog.scala" rel="nofollow">Slf4jLog.scala</a></p> <p>Which looks like this:</p> <pre><code>class Log4JLogger(val logger: Logger) extends LiftLogger { override def trace(msg: =&gt; AnyRef) = if (isTraceEnabled) logger.trace(msg) } </code></pre> <p>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.</p> <p>If you have a separate trait that mixes this Log4JLogger into your class, then you can do</p> <pre><code>trace("The foobar from " + a + " doesn't match the foobar from " + b + " and you should reset the baz from " + c") </code></pre> <p>instead of</p> <pre><code>info("The foobar from {0} doesn't match the foobar from {1} and you should reset the baz from {c}, Array(a, b, c)) </code></pre>