add tracing logs
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m53s

This commit is contained in:
2024-02-20 20:42:17 +01:00
parent 268aad56c8
commit 0dc59cea16
4 changed files with 8 additions and 1 deletions

View File

@ -77,6 +77,7 @@ impl Risdok {
pub(crate) fn from_str(xml: &str, builder: &mut LawBuilder) -> Result<bool, Error> {
let doc = roxmltree::Document::parse(xml)?;
trace!("{doc:?}");
let root = doc.root();
assert_eq!(root.children().count(), 1);
Ok(Self::parse(root.children().next().unwrap(), builder))
@ -171,6 +172,7 @@ impl Ziffernliste {
}
pub(crate) fn parse(c: &mut Peekable<Children>) -> Self {
trace!("Parsing Ziffernliste...");
let n = c.next().unwrap();
assert!(Self::test(&n));