levelEmojis constant

Map<Level, String> const levelEmojis

Emojis to be printed to graphically show the gravity of the log message.

Implementation

static const Map<Level, String> levelEmojis = {
  Level.nothing: '  ',
  Level.verbose: '💬',
  Level.debug: '🐛',
  Level.info: '💡 ',
  Level.warning: '⚠️',
  Level.error: '⛔',
  Level.wtf: '👾',
};