RealmLogLevel class Realm
Specifies the criticality level above which messages will be logged by the default sync client logger.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
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.
Level.ALL
- debug → const Level
-
Reveal information that can aid debugging, no longer paying
attention to efficiency.
Level('DEBUG', 400)
- detail → const Level
-
Same as info, but prioritize completeness over minimalism.
Level('DETAIL', 500)
- error → const Level
-
Log errors only.
Level('ERROR', 1000)
- fatal → const Level
-
Log only fatal errors.
Level('FATAL', 1200)
- info → const Level
-
Log operational sync client messages, but in a minimalist fashion to
avoid general overhead from logging and to keep volume down.
Level.INFO
- off → const Level
-
Turn off logging.
Level.OFF
- trace → const Level
-
A version of debug that allows for very high volume output.
This may seriously affect the performance of the sync client.
Level('TRACE', 300)
- warn → const Level
-
Log errors and warnings.
Level.WARNING