From 663df96607046311f903ae8581f7222a50d79de2 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Mon, 23 Jun 2025 07:18:25 +0200 Subject: [PATCH] Add log scope --- ethers/signer.nim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ethers/signer.nim b/ethers/signer.nim index e38509e..4194a56 100644 --- a/ethers/signer.nim +++ b/ethers/signer.nim @@ -13,6 +13,9 @@ type Signer* = ref object of RootObj populateLock: AsyncLock +logScope: + topics = "ethers signer" + template raiseSignerError*(message: string, parent: ref CatchableError = nil) = raise newException(SignerError, message, parent)