]> Repositorios git - scryer-prolog.git/commitdiff
Remove debug println!s
authorNicolas Luck <[email protected]>
Tue, 11 Jul 2023 23:26:54 +0000 (01:26 +0200)
committerNicolas Luck <[email protected]>
Tue, 11 Jul 2023 23:26:54 +0000 (01:26 +0200)
src/machine/mod.rs

index b3e5b2e34c2b281962ae5dd0124cc2c2b1d679ab..75f08e6c888e65d8ec20d53b56fa08516aa7bf59 100644 (file)
@@ -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::<Vec<QueryResultLine>>();
 
-        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() {