summaryrefslogtreecommitdiff
path: root/crates/parser/src/module.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/parser/src/module.rs')
-rw-r--r--crates/parser/src/module.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/parser/src/module.rs b/crates/parser/src/module.rs
index 268bad7..2beba9e 100644
--- a/crates/parser/src/module.rs
+++ b/crates/parser/src/module.rs
@@ -162,6 +162,10 @@ impl ModuleReader {
validator.end(offset)?;
self.end_reached = true;
}
+ CustomSection(reader) => {
+ debug!("Found custom section");
+ debug!("Skipping custom section: {:?}", reader.name());
+ }
UnknownSection { .. } => {
return Err(ParseError::UnsupportedSection("Unknown section".into()))
}