e static method

void e(
  1. String msg, [
  2. Exception? error
])

Error (for errors).

Implementation

static void e(String msg, [Exception? error]) {
  _forAllStrategies(
    (strategy) => strategy.log(msg, priorityLogError, error),
  );
}