commit | 4440af8f596f1ec4e2148e55389c4d5b0c52da43 | [log] [tgz] |
---|---|---|
author | David Brown <david.brown@linaro.org> | Mon Jan 09 12:15:05 2017 -0700 |
committer | David Brown <david.brown@linaro.org> | Mon Jan 09 12:28:10 2017 -0700 |
tree | 5d0aa36ff66619e5996c7c7d0e39d5b11a712a96 | |
parent | de7729e6ec2a2d9d0804f4776519e7d1ae4c9b97 [diff] |
sim: Use logging to control output Use the Rust logging so that normal messaging isn't overwhelmed by messages printed. The default level is 'error' which will only print full errors (including the failures at the end). To run with warnings: RUST_LOG=warn ./target/release/bootsim ... This will print warnings, showing the particular failures in mind. Using 'info' instead of 'warn' will print lots of progress as it runs.