All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zink.scala.fly.kit.Logging.scala Maven / Gradle / Ivy

package com.zink.scala.fly.kit

import java.util.logging.Level
import java.util.logging.Logger

trait Logging {
  
  private val log = Logger.getLogger(getClass.getName);

  def logSevere(e:Throwable) {
    log.log(Level.SEVERE, null, e)
  }
  
  def logSevere(message:String) {
    log.log(Level.SEVERE, message)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy