A fork of babel-plugin-meaningful-logs A babel plugin that enhances your logs by adding the file and the object logging.
npm i babel-plugin-logs-paths --save-dev
or
yarn add babel-plugin-logs-paths --dev
console.log(b.length)
becomes
console.log("pathToFile:2:8:b.length", b.length)
By default it modifies all console commands: console.error, console.log... But it can be customized. To modify all winstons logs the .babelrc file would be:
{
plugins: [
['logs-paths',
{loggers: [{pattern: 'winston'}]}
]
]
}
- Submit an issue
- Fork the repository
- Create a dedicated branch (never ever work in
master
) - The first time, run command:
yarn
into the directory - Fix bugs or implement features
This project is licensed under the terms of the MIT license