Skip to content

Commit

Permalink
spider: fix typo in log statement
Browse files Browse the repository at this point in the history
Fix a typo in a log statement.

Signed-off-by: thc202 <[email protected]>
  • Loading branch information
thc202 committed Sep 7, 2023
1 parent 15bb4bf commit 06c49ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion addOns/spider/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Changed
- Maintenance changes.

## [0.6.0] - 2023-09-07
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public boolean parseResource(ParseContext ctx) {
for (MasterBlockRef masterBlockRef : dsStore.buddyAllocatorBody().directories()) {
// Each B-tree directory has one master block comprising metadata.
MasterBlock masterBlock = masterBlockRef.masterBlock();
getLogger().debug("Rcords: {}", masterBlock.numRecords());
getLogger().debug("Records: {}", masterBlock.numRecords());

Block rootBlock = masterBlock.rootBlock();

Expand Down

0 comments on commit 06c49ee

Please sign in to comment.