AndroidLogger
class AndroidLogger(val logTag: String, val levelForVerboseMessages: Int = Log.VERBOSE, val levelForErrorMessages: Int = Log.ERROR) : Logger
Logger for Android that logs using android.util.Log.
Uses logTag as the tag for the logs.
Received actions and state updates in a Store are logged with levelForVerboseMessages. Exceptions are logged with levelForErrorMessages.
Valid values for the log levels are: VERBOSE, DEBUG, INFO, WARN, ERROR.
See also
Throws
If the log tag is empty or the log levels are invalid integer values.
Properties
Link copied to clipboard
Link copied to clipboard
Log level for verbose messages. Must be one of the level constants from Log. Defaults to Log.VERBOSE.