trace method

FutureOr<void> trace(
  1. String body, {
  2. Map<String, SentryLogAttribute>? attributes,
})

Implementation

FutureOr<void> trace(
  String body, {
  Map<String, SentryLogAttribute>? attributes,
}) {
  return _captureLog(SentryLogLevel.trace, body, attributes: attributes);
}