logDebugIO static method

IO<Unit> logDebugIO(
  1. Object? message, {
  2. Map<String, dynamic>? annotations,
})

An IO version of logDebug.

Implementation

static IO<Unit> logDebugIO(
  Object? message, {
  Map<String, dynamic>? annotations,
}) =>
    logDebug(message, annotations: annotations);