logAstAnalysis static method

void logAstAnalysis(
  1. String description, {
  2. required Duration duration,
  3. bool found = false,
})

Log AST analysis.

Implementation

static void logAstAnalysis(
  String description, {
  required Duration duration,
  bool found = false,
}) {
  _logger.debug(
    'AST analysis: $description - ${found ? 'found' : 'not found'} '
    '(${duration.inMilliseconds}ms)',
  );
}