diff --git a/analyzer/windows/lib/api/process.py b/analyzer/windows/lib/api/process.py index 3e4d534b7ed..274b71f2ddb 100644 --- a/analyzer/windows/lib/api/process.py +++ b/analyzer/windows/lib/api/process.py @@ -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