warn static method

Future<void> warn(
  1. String msg
)

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

Example

Logger.warn("Something WEIRD");
E TSLocationManager: [c.t.l.logger.TSLog log]
E TSLocationManager: ⚠️  Something WEIRD

Implementation

static Future<void> warn(String msg) {
  return _log(_LOG_LEVEL_WARN, msg);
}