LogIO3Strict

logstage.strict.LogIO3Strict
object LogIO3Strict

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

def apply[F[_, _, _] : LogIO3Strict]: LogIO3Strict[F]
def fromLogger[F[_, _, _] : SyncSafe3](logger: AbstractLogger): LogIO3Strict[F]
def log[F[_, _, _]](implicit l: LogIO3Strict[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