From f0c85062459fbed1007e768bd05b3934d8fe3a0a Mon Sep 17 00:00:00 2001 From: SW van Heerden Date: Wed, 7 Dec 2022 15:21:33 +0200 Subject: [PATCH] improve logging --- base_layer/core/src/base_node/service/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_layer/core/src/base_node/service/service.rs b/base_layer/core/src/base_node/service/service.rs index 7940cdf969..0f2e52cdcd 100644 --- a/base_layer/core/src/base_node/service/service.rs +++ b/base_layer/core/src/base_node/service/service.rs @@ -346,7 +346,7 @@ where B: BlockchainBackend + 'static if let Err(res) = result { error!( target: LOG_TARGET, - "BaseNodeService failed to send reply to local block submitter {:?}", + "BaseNodeService Caller dropped the oneshot receiver before reply could be sent. Reply: {:?}" res.map(|r| r.to_string()).map_err(|e| e.to_string()) ); }