Skip to content

Commit

Permalink
cargo-flash: Add log messages support (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnestler committed Nov 11, 2019
1 parent e661c4e commit ec01815
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cargo-flash/Cargo.toml
Expand Up @@ -18,4 +18,5 @@ cargo-project = "0.2.2"
failure = "0.1.5"
colored = "1.8.0"
probe-rs = { path = "../probe-rs", version = "0.2.0" }
probe-rs-targets = { path = "../probe-rs-targets", version = "0.2.0" }
probe-rs-targets = { path = "../probe-rs-targets", version = "0.2.0" }
pretty_env_logger = "0.3.0"
1 change: 1 addition & 0 deletions cargo-flash/src/main.rs
Expand Up @@ -64,6 +64,7 @@ struct Opt {
}

fn main() {
pretty_env_logger::init();
match main_try() {
Ok(_) => (),
Err(e) => {
Expand Down

0 comments on commit ec01815

Please sign in to comment.