f static method

void f(
  1. dynamic message
)

Logs a critical/fatal message.

Use for severe errors that will likely cause the application to abort.

Log.f('Database connection lost - shutting down');

Implementation

static void f(dynamic message) => _logger.shout(_format(message));