Logging
SalOne22 opened this issue · 1 comments
SalOne22 commented
Implement logging support with errors output.
Description:
We need to implement logging support for our tool to keep track of important events and error messages. The logging should output to the console and include error messages when they occur. This will help us diagnose issues and improve the stability of our tool.
Required Libraries:
- log (https://crates.io/crates/log)
- pretty_env_logger (https://crates.io/crates/pretty_env_logger)
Steps to Implement:
- Install the required libraries using Cargo.
- Implement logging support in our code using the
log
crate. - Configure the logger to output to the console using the
pretty_env_logger
crate. - Test the logging to ensure it outputs errors and important events correctly.
Expected Behavior:
The logging should output important events and error messages to the console when they occur. This will help us diagnose issues and improve the stability of our tool.
Actual Behavior:
Currently, our tool does not have logging support, which makes it difficult to diagnose issues and improve the stability of our tool.
SalOne22 commented
Started working on it