Skip to content

Commit

Permalink
removed debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
njelich committed Feb 29, 2024
1 parent 814d1b3 commit 85b1224
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions casr/src/bin/casr-gdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,9 @@ fn main() -> Result<()> {
.map(|x| x.to_string())
.collect();

println!("Debugging GBD output: {:?}", result);

let siginfo = Siginfo::from_gdb(&result[1]);

if let Err(error) = siginfo {
println!("Debugging Noah: {:?}", error);
let err_str = error.to_string();
let re = Regex::new(r"\$\d+ = (0x0|void) doesn't match regex template").unwrap();
if err_str.contains(": doesn't match") || re.is_match(&err_str) {
Expand Down

0 comments on commit 85b1224

Please sign in to comment.