Logger constructor

Logger(
  1. String name, {
  2. LogLevel minLevel = LogLevel.info,
  3. bool includeTimestamps = true,
  4. bool includeLoggerName = true,
})

Creates a new Logger with the given parameters

Implementation

Logger(
  this.name, {
  this.minLevel = LogLevel.info,
  this.includeTimestamps = true,
  this.includeLoggerName = true,
});