diff options
Diffstat (limited to 'src/zenutil/openprocesscache.cpp')
| -rw-r--r-- | src/zenutil/openprocesscache.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/zenutil/openprocesscache.cpp b/src/zenutil/openprocesscache.cpp index 88bbce8a6..8ecd4aa6a 100644 --- a/src/zenutil/openprocesscache.cpp +++ b/src/zenutil/openprocesscache.cpp @@ -161,7 +161,11 @@ OpenProcessCache::GCHandles() { continue; } - ZEN_INFO("GC stale target process pid {} for session {}: {}", It.second.ProcessPid, It.first, It.second.ProcessHandle); + ZEN_INFO("GC stale target process pid {} for session {} (exit code: {}, handle: {})", + It.second.ProcessPid, + It.first, + ExitCode, + It.second.ProcessHandle); DeadHandles.push_back(It.second.ProcessHandle); // We just mark the session as "dead" for one GC pass to avoid re-opening a stale process |