Log statistics about the current cache state
| 220 | |
| 221 | // Log statistics about the current cache state |
| 222 | void ProcessResolver::LogCacheStatistics() { |
| 223 | std::lock_guard<std::mutex> lock(cache_mutex); |
| 224 | LOG_A(LOG_DEBUG, "ProcessResolver: Total cached processes: %zu", cache.size()); |
| 225 | } |
| 226 | |
| 227 | |
| 228 | // Cleanup thread management |
no test coverage detected