From 0f58a360612df762c024a6788afa860fa85cc341 Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 15 Dec 2025 17:18:59 +0000 Subject: [PATCH] no rust log for now --- rust/exo_pyo3_bindings/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/exo_pyo3_bindings/src/lib.rs b/rust/exo_pyo3_bindings/src/lib.rs index 0dd864e5..ff855a91 100644 --- a/rust/exo_pyo3_bindings/src/lib.rs +++ b/rust/exo_pyo3_bindings/src/lib.rs @@ -84,12 +84,14 @@ pub(crate) mod ext { #[pymodule(name = "exo_pyo3_bindings")] fn main_module(m: &Bound<'_, PyModule>) -> PyResult<()> { // install logger + /* use log::LevelFilter; #[allow(clippy::expect_used)] pyo3_log::Logger::default() .filter(LevelFilter::Warn) .install() .expect("logger install"); + */ ident_submodule(m)?; networking_submodule(m)?;