Skip to content

Commit

Permalink
Merge pull request #87 from gschup/feature/fmt_check
Browse files Browse the repository at this point in the history
Feature: Add cargo fmt check to github action
  • Loading branch information
gschup committed Nov 7, 2023
2 parents 763bfe3 + 73d82cb commit 44cca88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ jobs:
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check formatting
run: cargo fmt --check
5 changes: 1 addition & 4 deletions src/snapshot/entity_checksum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ impl EntityChecksumPlugin {

let result = ChecksumPart(hasher.finish() as u128);

trace!(
"Rollback Entities have checksum {:X}",
result.0
);
trace!("Rollback Entities have checksum {:X}", result.0);

if let Ok(mut checksum) = checksum.get_single_mut() {
*checksum = result;
Expand Down

0 comments on commit 44cca88

Please sign in to comment.