LogIO2Strict

logstage.strict.LogIO2Strict
object LogIO2Strict

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

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

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

Attributes