debug method

void debug(
  1. String title, {
  2. String? body,
})

Logs a debug message.

Use this to print status updates that can help debugging.

Implementation

void debug(String title, {String? body}) {
  logger.d(getMessage(title, body));
  final log = BurtLog(level: BurtLogLevel.debug, title: title, body: body, device: device);
  socket?.sendMessage(log);
}