Skip to content

Instantly share code, notes, and snippets.

@m0wfo
Created January 2, 2014 17:11
Show Gist options
  • Save m0wfo/8222548 to your computer and use it in GitHub Desktop.
Save m0wfo/8222548 to your computer and use it in GitHub Desktop.
package com.logentries.scala
import org.apache.log4j.LogManager
object Main {
def main(args: Array[String]) {
val log = LogManager.getRootLogger()
log.debug("Hello, Scala world!")
Thread.sleep(1000)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment