mirror of
https://github.com/strapi/strapi.git
synced 2025-07-17 22:14:25 +00:00
14 lines
210 B
JavaScript
14 lines
210 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const { config } = require('winston');
|
||
|
|
||
|
const LEVELS = config.npm.levels;
|
||
|
const LEVEL_LABEL = 'silly';
|
||
|
const LEVEL = LEVELS[LEVEL_LABEL];
|
||
|
|
||
|
module.exports = {
|
||
|
LEVEL,
|
||
|
LEVEL_LABEL,
|
||
|
LEVELS,
|
||
|
};
|