Merge pull request #80 from DeterminateSystems/clarify-log-message

Provide more useful disabled message
This commit is contained in:
Luc Perkins 2024-07-16 10:15:12 -07:00 committed by GitHub
commit 97a583df58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View file

@ -21,8 +21,10 @@ jobs:
- name: Check health of flake.lock
uses: DeterminateSystems/flake-checker-action@main
with:
fail-mode: true
# TODO: re-enable fail mode when we find a way to bump Nixpkgs to 24.05
# without breaking the static Rust build
#with:
# fail-mode: true
- name: Check Rust formatting
run: nix develop --command cargo fmt --check

View file

@ -241,7 +241,9 @@ async fn main_cli() -> Result<()> {
}
}
} else {
tracing::info!("FlakeHub cache is disabled.");
tracing::info!(
"FlakeHub cache is disabled, as the `use-flakehub` setting is set to `false`."
);
None
};