RealmLogLevel class Realm

Specifies the criticality level above which messages will be logged by the default sync client logger.

Constructors

RealmLogLevel()

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

Constants

all → const Level
Log everything. This will seriously harm the performance of the sync client and should never be used in production scenarios.
debug → const Level
Reveal information that can aid debugging, no longer paying attention to efficiency.
detail → const Level
Same as info, but prioritize completeness over minimalism.
error → const Level
Log errors only.
fatal → const Level
Log only fatal errors.
info → const Level
Log operational sync client messages, but in a minimalist fashion to avoid general overhead from logging and to keep volume down.
off → const Level
Turn off logging.
trace → const Level
A version of debug that allows for very high volume output. This may seriously affect the performance of the sync client.
warn → const Level
Log errors and warnings.