Skip to content

Commit 68671f4

Browse files
committed
comment out some debug statements
1 parent afb24de commit 68671f4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/chemistry.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ pub fn likely_adorned_chem_formula(mathml: Element) -> isize {
13741374

13751375
let mut empty_superscript = false;
13761376
if tag_name == "msup" || tag_name == "msubsup" {
1377-
debug!("likely_adorned_chem_formula: mathml\n{}", mml_to_string(mathml));
1377+
// debug!("likely_adorned_chem_formula: mathml\n{}", mml_to_string(mathml));
13781378
let superscript = as_element(children[if tag_name == "msup" {1} else {2}]);
13791379
empty_superscript = name(superscript) == "mtext" && as_text(superscript).trim().is_empty();
13801380
if !empty_superscript {
@@ -1485,7 +1485,7 @@ pub fn likely_adorned_chem_formula(mathml: Element) -> isize {
14851485
likelihood += likely_chem_formula(base);
14861486
}
14871487

1488-
debug!("returning from likely_adorned_chem_formula: likelihood={}, mathml\n{}", likelihood, mml_to_string(mathml));
1488+
// debug!("returning from likely_adorned_chem_formula: likelihood={}, mathml\n{}", likelihood, mml_to_string(mathml));
14891489
return likelihood;
14901490

14911491

0 commit comments

Comments
 (0)