Skip to content

Commit

Permalink
Quiet some tracing, make sure nightly formatting present for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mzeitlin11 committed Nov 26, 2023
1 parent 3c817c8 commit 30673e9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/async-stripe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt

- name: Check formatting
run: cargo +nightly fmt -- --check

- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down
2 changes: 1 addition & 1 deletion openapi/src/url_finder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl UrlFinder {

// Only warn if not the stub `UrlFinder`
if !self.flattened_api_sections.is_empty() {
tracing::warn!("{} not in html", object);
tracing::debug!("{} not in html", object);
}

None
Expand Down

0 comments on commit 30673e9

Please sign in to comment.