SalOne22/rimage

Logging

SalOne22 opened this issue · 1 comments

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:

Steps to Implement:

  1. Install the required libraries using Cargo.
  2. Implement logging support in our code using the log crate.
  3. Configure the logger to output to the console using the pretty_env_logger crate.
  4. 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.

Started working on it