We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Error and debug messages are handled by the Rust env_logger crate, which allows users to control log levels via the RUST_LOG environment variable.
RUST_LOG
All errors and debug information are printed to stderr:
stderr
# Disable all log messages RUST_LOG=off binwalk -Me file_name.bin
# Only display log messages of 'info' priority or higher RUST_LOG=info binwalk -Me file_name.bin
# Show all log messages RUST_LOG=debug binwalk -Me file_name.bin
Tip
The RUST_LOG environment variable can specify much more fine-grained behavior than what is shown above.
See the env_logger documentation for more detail.