diff options
author | notgne2 | 2020-12-27 13:04:54 -0700 |
---|---|---|
committer | notgne2 | 2020-12-27 13:04:54 -0700 |
commit | 40d71ccdd715c6008de1a0bb97ed11282a8fe61c (patch) | |
tree | 53d6833e6211da06d44779be5a5c5a2f4254b71c | |
parent | 48548d1b1564861a63603814d62bb008e4e3edae (diff) |
Make printed deployment information be info level instead of warn
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index c003da7..6783c40 100644 --- a/src/main.rs +++ b/src/main.rs @@ -247,7 +247,7 @@ fn print_deployment( let toml = toml::to_string(&part_map)?; - warn!("The following profiles are going to be deployed:\n{}", toml); + info!("The following profiles are going to be deployed:\n{}", toml); Ok(()) } |