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

com.malliina.util.AppLogger.scala Maven / Gradle / Ivy

The newest version!
package com.malliina.util

import org.slf4j.{Logger, LoggerFactory}

object AppLogger {
  def apply(cls: Class[?]): Logger = {
    val name = cls.getName.reverse.dropWhile(_ == '$').reverse
    LoggerFactory.getLogger(name)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy