poly.util.logging.HasLogger.scala Maven / Gradle / Ivy
The newest version!
package poly.util.logging
/**
* Mix this trait with any class that you would like to log with.
* @author Tongfei Chen ([email protected]).
*/
trait HasLogger {
protected lazy val logger = new Logger(this.getClass.getCanonicalName)
}