log unknown method for quorum

This commit is contained in:
a10zn8
2023-06-26 19:22:06 +04:00
parent 6e5498f691
commit b383ebdffe

View File

@@ -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()
}
}