debug static method

Future<void> debug(
  1. String msg
)

Inserts a debug log message into the SDK's log database

Example

Logger.debug("This is a debug message");
D TSLocationManager: [c.t.l.logger.TSLog log] This is a debug message

Implementation

static Future<void> debug(String msg) {
  return _log(_LOG_LEVEL_DEBUG, msg);
}