@qso-soft/shared
Version:
Shared library for QSO-soft
22 lines • 619 B
JavaScript
export const LOGS_PATH = './logs';
export const COMBINED_LOGS = 'combined.log';
export const TIMESTAMP_FORMAT = 'DD-MM-YYYY HH:mm:ss';
export const LEVELS_NAMES = {
error: 'error',
warning: 'warning',
success: 'success',
info: 'info',
};
export const LEVELS = {
[]: 0,
[]: 1,
[]: 2,
[]: 3,
};
export const LEVELS_COLORS = {
[]: 'red',
[]: 'yellow',
[]: 'green',
[]: 'brightWhite',
};
//# sourceMappingURL=constants.js.map