LoggerConfig constructor

const LoggerConfig({
  1. Level level = Level.INFO,
  2. void customHandler(
    1. StructuredLogEntry
    )?,
  3. bool includeStackTraces = true,
})

Implementation

const LoggerConfig({
  this.level = Level.INFO,
  this.customHandler,
  this.includeStackTraces = true,
});