log method

Future<void> log(
  1. String message
)

Logs a message that's included in the next fatal or non-fatal report.

Logs are visible in the session view on the Firebase Crashlytics console.

Newline characters are stripped and extremely long messages are truncated. The maximum log size is 64k. If exceeded, the log rolls such that messages are removed, starting from the oldest.

Implementation

Future<void> log(String message) async {
  return _delegate.log(message);
}