debug method

void debug(
  1. String message, {
  2. LogType type = cli.TextLogType.normal,
  3. bool newParagraph = false,
})

Debug Messages Guidelines

Should contain information that could be helpful when debugging user issues. These messages are not intended to be shown to the user.

Implementation

void debug(
  final String message, {
  final cli.LogType type = cli.TextLogType.normal,
  final bool newParagraph = false,
}) {
  _logger.debug(
    message,
    type: type,
    newParagraph: newParagraph,
  );
}