info static method
Inserts an "info" log message into the SDK's log database
Example
Logger.info("Something informative");
E TSLocationManager: [c.t.l.logger.TSLog log]
I TSLocationManager: ℹ️ Something informative
Implementation
static Future<void> info(String msg) {
return _log(_LOG_LEVEL_INFO, msg);
}