notice static method

Future<void> notice(
  1. String msg
)

Inserts a "notice" log message into the SDK's log database

Example

Logger.notice("A Notice");
E TSLocationManager: [c.t.l.logger.TSLog log]
I TSLocationManager:   🔵  A Notide3

Implementation

static Future<void> notice(String msg) {
  return _log(_LOG_LEVEL_NOTICE, msg);
}