Skip to content

Commit

Permalink
Fix setup so it outputs without -vv
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdett committed Oct 12, 2017
1 parent a19c612 commit 1e3f96b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ fn setup(container_name: &str) -> () {
.unwrap();
ensure_container_exists(&auth_info, container_name).unwrap();
let form_template = backup_config(&auth_info, container_name, &temp_url_key);
info!("{}", serde_json::to_string_pretty(&form_template).unwrap());
println!("{}", serde_json::to_string_pretty(&form_template).unwrap());
}

fn backup<'a>(
Expand Down

0 comments on commit 1e3f96b

Please sign in to comment.