Skip to content

Commit 0ec73a7

Browse files
authored
cleanup: logs (#1192)
1 parent 199bec2 commit 0ec73a7

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
@@ -338,12 +338,10 @@ static LIB_CONTEXT: LazyLock<tokio::sync::Mutex<Option<Arc<LibContext>>>> =
338338
LazyLock::new(|| tokio::sync::Mutex::new(None));
339339

340340
pub(crate) async fn init_lib_context(settings: Option<settings::Settings>) -> Result<()> {
341-
error!("Init lib context");
342341
let settings = match settings {
343342
Some(settings) => settings,
344343
None => get_settings()?,
345344
};
346-
error!("Init lib context with settings: {:?}", settings);
347345
let mut lib_context_locked = LIB_CONTEXT.lock().await;
348346
*lib_context_locked = Some(Arc::new(create_lib_context(settings).await?));
349347
Ok(())

0 commit comments

Comments
 (0)