Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
benfred committed Oct 30, 2024
1 parent d9b51a2 commit 4027c7c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/python_process_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,11 @@ where
// Make sure the interpreter addr is valid before returning
match check_interpreter_addresses(&[addr], &*python_info.maps, process, version) {
Ok(addr) => {
warn!("skipping symbol interpreter to test BSS scanning code {:016x}", addr);
// return Ok(addr),
warn!(
"skipping symbol interpreter to test BSS scanning code {:016x}",
addr
);
// return Ok(addr),
}
Err(_) => {
warn!(
Expand Down

0 comments on commit 4027c7c

Please sign in to comment.