X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FLogger.ts;h=7d80e1aece51349349abd0766f8af5ae2b196833;hb=2665ed1ef62a9fc9b6eec417f3ec7c33305789cf;hp=6ea286b2b23d0b0a5cab66e10f24e7012d24f249;hpb=864e5f8d63cb09c2f4d6ac46b80ea15e34cc9a04;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Logger.ts b/src/utils/Logger.ts index 6ea286b2..7d80e1ae 100644 --- a/src/utils/Logger.ts +++ b/src/utils/Logger.ts @@ -1,63 +1,74 @@ -import type { FormatWrap } from 'logform'; -import { createLogger, format, type transport } from 'winston'; -import TransportType from 'winston/lib/winston/transports/index.js'; -import DailyRotateFile from 'winston-daily-rotate-file'; +import type { FormatWrap } from 'logform' +import { createLogger, format, type transport } from 'winston' +import TransportType from 'winston/lib/winston/transports/index.js' +import DailyRotateFile from 'winston-daily-rotate-file' -import { Configuration } from './Configuration'; -import { insertAt } from './Utils'; -import { ConfigurationSection, type LogConfiguration } from '../types'; +import { Configuration } from './Configuration.js' +import { insertAt } from './Utils.js' +import { ConfigurationSection, type LogConfiguration } from '../types/index.js' const logConfiguration = Configuration.getConfigurationSection( - ConfigurationSection.log, -); -let transports: transport[]; + ConfigurationSection.log +) +let transports: transport[] if (logConfiguration.rotate === true) { - const logMaxFiles = logConfiguration.maxFiles; - const logMaxSize = logConfiguration.maxSize; + const logMaxFiles = logConfiguration.maxFiles + const logMaxSize = logConfiguration.maxSize transports = [ new DailyRotateFile({ filename: insertAt( + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion logConfiguration.errorFile!, '-%DATE%', - logConfiguration.errorFile!.indexOf('.log'), + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + logConfiguration.errorFile!.indexOf('.log') ), level: 'error', - ...(logMaxFiles && { maxFiles: logMaxFiles }), - ...(logMaxSize && { maxSize: logMaxSize }), + ...(logMaxFiles != null && { maxFiles: logMaxFiles }), + ...(logMaxSize != null && { maxSize: logMaxSize }) }), new DailyRotateFile({ + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion filename: insertAt(logConfiguration.file!, '-%DATE%', logConfiguration.file!.indexOf('.log')), - ...(logMaxFiles && { maxFiles: logMaxFiles }), - ...(logMaxSize && { maxSize: logMaxSize }), - }), - ]; + ...(logMaxFiles != null && { maxFiles: logMaxFiles }), + ...(logMaxSize != null && { maxSize: logMaxSize }) + }) + ] } else { transports = [ new TransportType.File({ filename: logConfiguration.errorFile, - level: 'error', + level: 'error' }), new TransportType.File({ - filename: logConfiguration.file, - }), - ]; + filename: logConfiguration.file + }) + ] } export const logger = createLogger({ - silent: !logConfiguration.enabled, + silent: logConfiguration.enabled === false, level: logConfiguration.level, - format: format.combine(format.splat(), (format[logConfiguration.format!] as FormatWrap)()), - transports, -}); + format: format.combine( + format.splat(), + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + (format[logConfiguration.format! as keyof FormatWrap] as FormatWrap)() + ), + transports +}) // // If enabled, log to the `console` with the format: // `${info.level}: ${info.message} JSON.stringify({ ...rest }) ` // -if (logConfiguration.console) { +if (logConfiguration.console === true) { logger.add( new TransportType.Console({ - format: format.combine(format.splat(), (format[logConfiguration.format!] as FormatWrap)()), - }), - ); + format: format.combine( + format.splat(), + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + (format[logConfiguration.format! as keyof FormatWrap] as FormatWrap)() + ) + }) + ) }