From eb092d5e67295ed8e29105951c238d198b6308fd Mon Sep 17 00:00:00 2001 From: supernovahs <91280922+supernovahs@users.noreply.github.com> Date: Tue, 13 Aug 2024 16:58:42 +0530 Subject: [PATCH] fix: get_logger (#76) Co-authored-by: supernovahs --- crates/logging/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/logging/src/lib.rs b/crates/logging/src/lib.rs index 9979cedf..c35370c4 100644 --- a/crates/logging/src/lib.rs +++ b/crates/logging/src/lib.rs @@ -41,5 +41,5 @@ pub fn init_logger(log_level: LogLevel) { /// get the initialized logger pub fn get_logger() -> &'static TracingLogger { - TEST_LOGGER.get().expect("Logger not initialized") + LOGGER.get().expect("Logger not initialized") }