From b383ebdffe7cf156aaabbd0472150f502932d24b Mon Sep 17 00:00:00 2001 From: a10zn8 Date: Mon, 26 Jun 2023 19:22:06 +0400 Subject: [PATCH] log unknown method for quorum --- .../io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt index 61aa0fcf..b17aee02 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt @@ -84,7 +84,7 @@ class ManagedCallMethods( isDelegated(method) && !isRedefined(method) -> delegate.createQuorumFor(method) enabled.contains(method) -> quorum[method]?.create() ?: defaultQuorum.create() else -> { - log.warn("Getting quorum for unknown method") + log.warn("Getting quorum for unknown method - $method") defaultQuorum.create() } }