aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/main.rs')
-rw-r--r--xtask/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index 35e2a01..a7fd1d3 100644
--- a/xtask/src/main.rs
+++ b/xtask/src/main.rs
@@ -187,12 +187,12 @@ fn main() -> anyhow::Result<()> {
match cli.command {
Commands::FormatCheck(args) => {
- info!("Running cargo fmt: {args:?}");
+ info!("Running cargo fmt --check: {args:?}");
let check_only = true;
cargo_format(&cargologlevel, &args, check_only)?;
}
Commands::Format(args) => {
- info!("Running cargo fmt --check: {args:?}");
+ info!("Running cargo fmt: {args:?}");
let check_only = false;
cargo_format(&cargologlevel, &args, check_only)?;
}