loggerx library
Support for doing something awesome.
More dartdocs go here.
Classes
- BaseLogger
- The BaseLogger class is used to log messages to the console It has four methods: debug, error, warning, info Each method logs the message with a different log level The log method is used to log the message with the specified log level The isActive property is used to enable or disable the logger If the logger is disabled, the log method does nothing @param isActive: A boolean value that specifies if the logger is active @param minimumLevel: A LogLevel value that specifies the minimum log level The logger will only log messages with a log level greater than or equal to the minimum level The default value is LogLevel.debug
- Logger
Enums
- LogLevel
- This enum is used to define the log level It has four values: debug, error, warning, info