diff --git a/rust/src/cache/rbs_cache.rs b/rust/src/cache/rbs_cache.rs index 287b869..390f137 100644 --- a/rust/src/cache/rbs_cache.rs +++ b/rust/src/cache/rbs_cache.rs @@ -79,7 +79,6 @@ impl RbsCache { if let Some(bundled_path) = Self::bundled_cache_path() { if let Ok(bytes) = fs::read(&bundled_path) { if let Ok(cache) = bincode::deserialize::(&bytes) { - eprintln!("Loaded bundled cache from {}", bundled_path.display()); return Ok(cache); } } diff --git a/rust/src/checker.rs b/rust/src/checker.rs index 1d62269..8ddd455 100644 --- a/rust/src/checker.rs +++ b/rust/src/checker.rs @@ -70,7 +70,6 @@ fn load_rbs_from_cache(genv: &mut GlobalEnv) -> Result<()> { )?; let methods = cache.methods(); - eprintln!("Loaded {} methods from cache", methods.len()); for method_info in methods { let receiver_type = Type::Instance { diff --git a/rust/src/rbs/loader.rs b/rust/src/rbs/loader.rs index b922acd..5b9a7b6 100644 --- a/rust/src/rbs/loader.rs +++ b/rust/src/rbs/loader.rs @@ -128,7 +128,6 @@ pub fn register_rbs_methods(genv: &mut GlobalEnv, ruby: &Ruby) -> Result