Skip to content

Commit 4d5ff9b

Browse files
committed
cleanup: remove unnecessary debug logs
1 parent 7da9c91 commit 4d5ff9b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib_context.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,12 +346,10 @@ pub(crate) async fn init_lib_context(settings: Option<settings::Settings>) -> Re
346346
}
347347

348348
pub(crate) async fn get_lib_context() -> Result<Arc<LibContext>> {
349-
debug!("Get lib context");
350349
let mut lib_context_locked = LIB_CONTEXT.lock().await;
351350
let lib_context = if let Some(lib_context) = &*lib_context_locked {
352351
lib_context.clone()
353352
} else {
354-
debug!("Get lib context: no lib context found, creating new one");
355353
let setting = get_settings()?;
356354
let lib_context = Arc::new(create_lib_context(setting).await?);
357355
*lib_context_locked = Some(lib_context.clone());

0 commit comments

Comments
 (0)