t static method

void t(
  1. dynamic message
)

Logs a trace message (most verbose level).

Use for detailed debugging information that is usually only needed when diagnosing specific problems.

Log.t('Entering function with params: $params');

Implementation

static void t(dynamic message) => _logger.finest(_format(message));