Skip to content

Commit

Permalink
Analyzer: remove noisy debug/warning output from process::open() method
Browse files Browse the repository at this point in the history
  • Loading branch information
kevoreilly committed Jun 4, 2024
1 parent 8f5442a commit add8f8c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions analyzer/windows/lib/api/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@ def open(self):
else:
self.h_process = KERNEL32.OpenProcess(PROCESS_ALL_ACCESS, False, self.pid)
if not self.h_process:
log.warning("OpenProcess(PROCESS_ALL_ACCESS, ...) failed for process %d", self.pid)
log.debug("Opening process with limited info %d", self.pid)
self.h_process = KERNEL32.OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, False, self.pid)

ret = True
Expand Down

0 comments on commit add8f8c

Please sign in to comment.