except method

  1. @override
void except(
  1. Exception exception, [
  2. StackTrace? stackTrace
])
override

Logs an exception with LogLevel.except.

Implementation

@override
void except(Exception exception, [StackTrace? stackTrace]) => _log(
      LogLevel.except,
      stackTrace != null ? '$exception\n$stackTrace' : exception.toString(),
      Color.MAGENTA,
    );