allow filtering fee recipient logs by topic (#5320)
Add separate log topic for `Refreshing fee recipient` messages.
This commit is contained in:
parent
6fd4983f6b
commit
8e500aa62f
|
@ -1,9 +1,18 @@
|
||||||
|
# beacon_chain
|
||||||
|
# Copyright (c) 2022-2023 Status Research & Development GmbH
|
||||||
|
# Licensed and distributed under either of
|
||||||
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
||||||
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
||||||
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
||||||
|
|
||||||
import
|
import
|
||||||
std/tables,
|
std/tables,
|
||||||
stew/results,
|
stew/results,
|
||||||
chronicles,
|
chronicles,
|
||||||
../datatypes/base
|
../datatypes/base
|
||||||
|
|
||||||
|
logScope: topics = "fee_recipient"
|
||||||
|
|
||||||
type
|
type
|
||||||
Entry = object
|
Entry = object
|
||||||
recipient: Eth1Address
|
recipient: Eth1Address
|
||||||
|
|
Loading…
Reference in New Issue