LogIO3

logstage.LogIO3
object LogIO3

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
LogIO3.type

Members list

Value members

Concrete methods

def apply[F[_, _, _] : LogIO3]: LogIO3[F]
def fromLogger[F[_, _, _] : SyncSafe3](logger: AbstractLogger): LogIO3[F]
def log[F[_, _, _]](implicit l: LogIO3[F]): l.type

Lets you refer to an implicit logger's methods without naming a variable

Lets you refer to an implicit logger's methods without naming a variable

 import logstage.LogIO3.log

 def fn[F[_, _, _]: LogIO3]: F[Any, Nothing, Unit] = {
   log.info(s"I'm logging with ${log}stage!")
 }

Attributes