-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update main.rs #167
base: main
Are you sure you want to change the base?
Update main.rs #167
Conversation
Changes made: Reintroduced Build Configuration Handling: Added separate functions handle_error_with_report for handling errors with and without detailed error reporting, depending on the build configuration. Streamlined Error Handling: Maintained a unified approach to error handling while respecting the differences between debug and release builds. Enhanced Readability: Improved the structure and readability of the code, making it easier to understand and maintain.
// handle release build | ||
#[cfg(not(debug_assertions))] | ||
{ | ||
println!("{}", e); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line should not be removed by the refactor
hi. these changes seem good but it looks like a useful error printout was removed during the refactor |
added thanks for feedback |
is there a still any error |
Motivation
The
main.rs
file in thecryo_cli
crate serves as the application's entry point. The existing implementation had opportunities for improvement in error handling and code readability. Specifically, the error handling varied based on build configurations (debug vs. release), and there was potential to enhance the overall structure and documentation of the code for better clarity and maintainability.Solution
This pull request introduces several key changes to
main.rs
:Changes made:
handle_error_with_report
for handling errors with and without detailed error reporting, depending on the build configuration. This ensures a consistent approach to error handling across different build environments.main
function and its error handling logic easier to understand and maintain, aiding both current maintenance and future development efforts.These changes aim to enhance the overall quality of the
cryo_cli
crate, making it more robust and easier to work with for developers.PR Checklist