info method
Logs an info message.
Use this to print status updates for the user to see.
Implementation
void info(String title, {String? body}) {
logger.i(getMessage(title, body));
final log = BurtLog(level: BurtLogLevel.info, title: title, body: body, device: device);
socket?.sendLog(log);
}