diff options
| author | Stefan Boberg <[email protected]> | 2026-03-15 20:42:36 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2026-03-15 20:42:36 +0100 |
| commit | 9c724efbf6b38466a9b6bfde37236369f1e85cb8 (patch) | |
| tree | 214e1ec00c5bfca0704ce52789017ade734fd054 /src/zenutil/openprocesscache.cpp | |
| parent | reduced WaitForThreads time to see how it behaves with explicit thread pools (diff) | |
| parent | add buildid updates to oplog and builds test scripts (#838) (diff) | |
| download | zen-9c724efbf6b38466a9b6bfde37236369f1e85cb8.tar.xz zen-9c724efbf6b38466a9b6bfde37236369f1e85cb8.zip | |
Merge remote-tracking branch 'origin/main' into sb/threadpool
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 |