Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import type { Configs } from '../type'
 
export const syslog: typeof Configs.syslog = {
  levels: {
    EMERG: 0,
    ALERT: 1,
    CRIT: 2,
    ERROR: 3,
    WARNING: 4,
    NOTICE: 5,
    INFO: 6,
    DEBUG: 7,
  },
  colors: {
    EMERG: 'red',
    ALERT: 'yellow',
    CRIT: 'red',
    ERROR: 'red',
    WARNING: 'red',
    NOTICE: 'yellow',
    INFO: 'green',
    DEBUG: 'blue',
  },
}
 
export default syslog
  |