trace method

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

Logs a trace message.

Use this to print values you want to inspect later.

Implementation

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