aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornotgne22020-12-27 13:04:54 -0700
committernotgne22020-12-27 13:04:54 -0700
commit40d71ccdd715c6008de1a0bb97ed11282a8fe61c (patch)
tree53d6833e6211da06d44779be5a5c5a2f4254b71c /src
parent48548d1b1564861a63603814d62bb008e4e3edae (diff)
Make printed deployment information be info level instead of warn
Diffstat (limited to '')
-rw-r--r--src/main.rs2
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(())
}