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(
  String message, {
  cli.LogType type = cli.TextLogType.normal,
  bool newParagraph = false,
}) {
  _logger.debug(message, type: type, newParagraph: newParagraph);
}