SDKLogger class abstract

Logging interface for Android/iOS platforms.

These logs are under management of LogControl and should be used instead of platform-specific logging functions.

Constructors

SDKLogger()

Properties

hashCode → int
The hash code for this object.
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

error(String tag, String message) → void
convenient function to print a message with log level ERROR and tag.
fatal(String tag, String message) → void
convenient function to print a message with log level FATAL and tag.
info(String tag, String message) → void
convenient function to print a message with log level INFO and tag.
log(LogLevel level, String tag, String message) → void
  • level The severity of the log message.

  • tag The log tag.

  • message The log message.

  • warn(String tag, String message) → void
    convenient function to print a message with log level WARNING and tag.