From 7211b8b08908ffb10db76b81cf01328a9362a758 Mon Sep 17 00:00:00 2001 From: Szegoo Date: Tue, 27 Aug 2024 10:58:29 +0200 Subject: [PATCH] fix log target --- pallets/processor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/processor/src/lib.rs b/pallets/processor/src/lib.rs index ffc6f778..9461707b 100644 --- a/pallets/processor/src/lib.rs +++ b/pallets/processor/src/lib.rs @@ -41,7 +41,7 @@ pub mod assigner; mod weights; pub use weights::WeightInfo; -const LOG_TARGET: &str = "runtime::order-creator"; +const LOG_TARGET: &str = "runtime::processor"; pub type BalanceOf = <::Currency as Currency<::AccountId>>::Balance;