Skip to content

Commit

Permalink
[876] Reduce startup logs (#877)
Browse files Browse the repository at this point in the history
* [876] Reduce startup logs

* [876] Update changelog

* [876] Unite comments
  • Loading branch information
idruzhitskiy authored Nov 28, 2024
1 parent a63ff12 commit 818962e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Bob versions changelog


#### Changed

- Reduce startup logs in normal flow (#876)

#### Fixed

Expand Down
6 changes: 2 additions & 4 deletions bob-backend/src/pearl/holder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,15 +398,13 @@ impl Holder {
builder.enable_aio(ioring)
}
Err(e) => {
warn!("bob will start with standard sync fs io api");
warn!("can't start with AIO, cause: {}", e);
warn!("bob will start with standard sync fs io api, can't start with AIO, cause: {}", e);
self.config.set_aio(false);
builder
}
}
} else {
warn!("bob will start with standard sync fs io api");
warn!("cause: disabled in config");
trace!("bob will start with standard sync fs io api, cause: disabled in config");
builder
};
builder
Expand Down

0 comments on commit 818962e

Please sign in to comment.