allow filtering fee recipient logs by topic (#5320)

Add separate log topic for `Refreshing fee recipient` messages.
This commit is contained in:
Etan Kissling 2023-08-19 13:16:30 +02:00 committed by GitHub
parent 6fd4983f6b
commit 8e500aa62f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -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