excludeBox property

Map<Level, bool> excludeBox
final

Controls the ascii 'boxing' of different Levels.

By default all levels are 'boxed', to prevent 'boxing' of a specific level, include it with true in the map.

Example to prevent boxing of Level.verbose and Level.info:

excludeBox: {
  Level.verbose: true,
  Level.info: true,
},

See also:

Implementation

final Map<Level, bool> excludeBox;