From 23d28cec40d18dcecd04eb9c6ce3036e781ce05e Mon Sep 17 00:00:00 2001 From: Jiangzhou He Date: Wed, 15 Oct 2025 17:53:19 -0700 Subject: [PATCH] cleanup: logs --- src/lib_context.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib_context.rs b/src/lib_context.rs index 598a43d15..6a076aaeb 100644 --- a/src/lib_context.rs +++ b/src/lib_context.rs @@ -338,12 +338,10 @@ static LIB_CONTEXT: LazyLock>>> = LazyLock::new(|| tokio::sync::Mutex::new(None)); pub(crate) async fn init_lib_context(settings: Option) -> Result<()> { - error!("Init lib context"); let settings = match settings { Some(settings) => settings, None => get_settings()?, }; - error!("Init lib context with settings: {:?}", settings); let mut lib_context_locked = LIB_CONTEXT.lock().await; *lib_context_locked = Some(Arc::new(create_lib_context(settings).await?)); Ok(())