Skip to content

Commit ab749a6

Browse files
authored
Stop printing ChainWorkerRequest (#3618)
## Motivation The `ChainWorkerRequest` is huge, we shouldn't print it. Saw it on the logs, and was taking over them completely. ## Proposal Stop logging the contents of `ChainWorkerRequest`. ## Test Plan CI + don't see it in logs anymore ## Release Plan - Nothing to do / These changes follow the usual release cycle.
1 parent 8300d64 commit ab749a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linera-core/src/chain_worker/actor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ where
309309
}
310310

311311
/// Runs the worker until there are no more incoming requests.
312-
#[instrument(skip(self))]
312+
#[instrument(skip(self, request))]
313313
pub async fn handle_request(&mut self, request: ChainWorkerRequest<StorageClient::Context>) {
314314
// TODO(#2237): Spawn concurrent tasks for read-only operations
315315
let responded = match request {

0 commit comments

Comments
 (0)