### 🔎 Search Terms winston not printing trace, winston not creating any outpout ### The problem Winston does not print log error when throw or process.exit() afterwards ### What version of Winston presents the issue? 3.15.0 ### What version of Node are you using? 20.18.0 ### If this worked in a previous version of Winston, which was it? _No response_ ### Minimum Working Example ` import logger from '@logging/logger' import Config from '@config/Config' const required = ['DB_URI', 'JWT_SECRET_ACCESS', 'JWT_SECRET_REFRESH'] const requiredConfig = (config: Config): void => { const missingKeys = required.filter((key) => !config[key as keyof Config]) if (missingKeys.length > 0) { const errorMessage = `Missing required config values in .env file: ${missingKeys.join(', ')}` logger.error(errorMessage) throw new Error(errorMessage) } } export default requiredConfig ` ### Additional information _No response_