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

im.actor.util.log.AnyRefLogSource.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package im.actor.util.log

import akka.event.LogSource

trait AnyRefLogSource {
  implicit val logSource: LogSource[AnyRef] = new LogSource[AnyRef] {
    def genString(o: AnyRef): String = o.getClass.getName
  }
}

object AnyRefLogSource extends AnyRefLogSource




© 2015 - 2024 Weber Informatics LLC | Privacy Policy