diff options
author | Aria Shrimpton <me@aria.rip> | 2024-03-04 13:13:26 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-03-04 13:13:36 +0000 |
commit | 7a258d648b4c674ce3d67494eab57d2f75ede043 (patch) | |
tree | 3758ad51720a044571da86d9783a6b419c531bb6 /src/crates | |
parent | 9d09f8605abb54acf9ed91d026f0c4888acb92e3 (diff) |
check for errors when fetching logs
Diffstat (limited to 'src/crates')
-rw-r--r-- | src/crates/primrose/src/library_specs.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/crates/primrose/src/library_specs.rs b/src/crates/primrose/src/library_specs.rs index 35e3705..3552d36 100644 --- a/src/crates/primrose/src/library_specs.rs +++ b/src/crates/primrose/src/library_specs.rs @@ -67,10 +67,7 @@ impl LibSpec { lib_specs.insert(spec.struct_name.clone(), spec); } Err(e) => { - debug!( - "Failed to process library module {}: {}. Continuing anyway.", - &path, e - ); + debug!("Ignoring invalid library module {}", &path); } } } |