From: Nicolas Luck Date: Tue, 11 Jul 2023 23:26:54 +0000 (+0200) Subject: Remove debug println!s X-Git-Tag: remove^2~67 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=3347f830c7ac852eceedbd7224273d562223f51e;p=scryer-prolog.git Remove debug println!s --- diff --git a/src/machine/mod.rs b/src/machine/mod.rs index b3e5b2e3..75f08e6c 100644 --- a/src/machine/mod.rs +++ b/src/machine/mod.rs @@ -360,7 +360,6 @@ impl Machine { pub fn parse_output(&self) -> QueryResult { let output = self.get_user_output(); - println!("parse_output output: {:?}", output); let parsed_lines = output.split(";") .map(|s| s.trim()) .map(|s| s.replace(".", "")) @@ -387,8 +386,6 @@ impl Machine { }) .collect::>(); - println!("parsed_lines: {:?}", parsed_lines); - // If there is only one line, and it is true or false, return that. if parsed_lines.len() == 1 { match parsed_lines[0].clone() {