debug method
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);
}