nginx-proxy-manager/backend/logger.js
Zoey 906d7ce04a
update nginx/dep updates/fix eslint/change line endings
Signed-off-by: Zoey <zoey@z0ey.de>
2024-04-19 11:42:01 +02:00

14 lines
524 B
JavaScript

const { Signale } = require('signale');
module.exports = {
global: new Signale({ scope: 'Global ' }),
migrate: new Signale({ scope: 'Migrate ' }),
express: new Signale({ scope: 'Express ' }),
access: new Signale({ scope: 'Access ' }),
nginx: new Signale({ scope: 'Nginx ' }),
ssl: new Signale({ scope: 'SSL ' }),
certbot: new Signale({ scope: 'Certbot ' }),
import: new Signale({ scope: 'Importer ' }),
setup: new Signale({ scope: 'Setup ' }),
ip_ranges: new Signale({ scope: 'IP Ranges' }),
};