diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 6c358f0..47c681f 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -13,7 +13,7 @@ concurrency: jobs: changelog: runs-on: ubuntu-latest - name: Validate Changelog + name: Validate steps: - uses: actions/checkout@v3 - uses: zattoo/changelog@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index e49d45d..bc5c415 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,10 @@ ## [0.14.0] - 2023-11-07 ### Added - - Global flag `--fix-hint={on,off}` to hide the hint of how to fix something. ### Fixed - - Typos in the fix-hint output. ### Changed - - Workflows do not show the fix-hint anymore since they can provide their own. diff --git a/src/cmd/mod.rs b/src/cmd/mod.rs index 86db000..d468cfc 100644 --- a/src/cmd/mod.rs +++ b/src/cmd/mod.rs @@ -36,7 +36,7 @@ pub struct GlobalArgs { #[clap(long = "log", global = true, default_value = "info", ignore_case = true)] level: ::log::LevelFilter, - /// Log level to use. + /// LOGGING IS DISABLED IN THIS BUILD; FLAG IGNORED. #[cfg(not(feature = "logging"))] #[clap(long = "log", global = true, default_value = "info", ignore_case = true)] level: String,