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