UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

14 lines (11 loc) 423 B
import bunyan from 'bunyan'; import bunyanFormat from 'bunyan-format'; const formatOut = bunyanFormat({ outputMode: 'short', color: false }); const disableLogs = process.env['SUPPRESS_LOGS']; const logger = bunyan.createLogger({ name: 'Digital Prison Reporting:', stream: formatOut, level: disableLogs ? bunyan.FATAL + 1 : 'debug', }); export { logger as default, logger }; //# sourceMappingURL=logger.js.map