debug method

void debug(
  1. String message, {
  2. String? file,
  3. String? line,
  4. String? column,
})

Prints a debug message to the log.

You must create a secret named ACTIONS_STEP_DEBUG with the value true to see the debug messages set by this command in the log. To learn more about creating secrets and using them in a step, see "Creating and using encrypted secrets."

Implementation

void debug(
  String message, {
  String? file,
  String? line,
  String? column,
}) =>
    _log('debug', message, file, line, column);