LogIO2

logstage.LogIO2
object LogIO2

Attributes

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

Members list

Value members

Concrete methods

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

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

Attributes