annotateLog method

ZIO<R, E, A> annotateLog(
  1. String name,
  2. dynamic value
)

Adds an annotation to the next log entry.

Implementation

ZIO<R, E, A> annotateLog(String name, dynamic value) =>
    annotate(loggerAnnotationsSymbol, name, value);