make logs more self-descriptive

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2026-02-02 15:26:38 +03:00
parent eb9fc16b43
commit 32483cdd40
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "ghost-slow-clap"
version = "0.4.12"
version = "0.4.13"
description = "Applause protocol for the EVM bridge"
license.workspace = true
authors.workspace = true

View File

@ -1011,7 +1011,7 @@ impl<T: Config> Pallet<T> {
log::info!(
target: LOG_TARGET,
"👻 Requests sent {} out of {}",
"👻 Requests sent {} out of {} possible RPC endpoints",
pending_requests.len(),
rpc_endpoints.len(),
);
@ -1123,8 +1123,8 @@ impl<T: Config> Pallet<T> {
log::info!(
target: LOG_TARGET,
"👻 Fetched {} of {}: {} failed request, {} failed responses, {} non 200 code",
pending_requests_len,
parsed_evm_responses.len(),
pending_requests_len,
requests_failed,
responses_failed,
responses_non_200,