devlogging is a lightweight logging utility designed for react developers to easily debug errors and important events during software development in the development environment. Say goodbye to cluttered console.log()
statements – with devlogging, you can streamline your debugging process effortlessly in development mode and don't need to worry about deleting all those console.log()
that you have used to debug; .
Using devlogging is simple:
-
Install the package using npm or yarn:
npm install devlogging
-
Import devlogging in your project:
import { logger } from 'devlogging';
-
Start logging/debugging in the development environment:
logger.log('This is a log message.'); logger.error('This is an error message.'); logger.info('This is an info message.'); logger.warn('This is a warning message.');
Contributions are welcome! Please feel free to submit bug reports, feature requests, or pull requests via the GitHub repository.