debug abstract method

void debug(
  1. String? correlationId,
  2. String message, [
  3. List args
])

Logs a high-level debug information for troubleshooting.

  • correlationId (optional) transaction id to trace execution through call chain.
  • message a human-readable message to log.
  • args arguments to parameterize the message.

Implementation

void debug(String? correlationId, String message, [List args]);