logInfo<R, E> static method

ZIO<R, E, Unit> logInfo<R, E>(
  1. Object? message, {
  2. Map<String, dynamic>? annotations,
})

Log a message at the LogLevel.info level using the Logger service.

Implementation

static ZIO<R, E, Unit> logInfo<R, E>(
  Object? message, {
  Map<String, dynamic>? annotations,
}) =>
    log(LogLevel.info, message, annotations: annotations);