From a2bff928e9b521472edffd6c8a832e7b87cf4e6f Mon Sep 17 00:00:00 2001 From: mitchell Date: Wed, 2 Oct 2024 06:59:10 -0400 Subject: [PATCH] Drop unnecessary debug logging. --- internal/process/process.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/process/process.go b/internal/process/process.go index b331a8c44b..eb5f267f78 100644 --- a/internal/process/process.go +++ b/internal/process/process.go @@ -29,14 +29,10 @@ func ActivationPID(cfg Configurable) int32 { seen := map[int32]bool{} for pid != 0 && pid != ppid { - logging.Debug("Current PID: %d, Parent PID: %d", pid, ppid) pidFileName := ActivationPIDFileName(cfg.ConfigPath(), int(pid)) - logging.Debug("Looking for activation pid file: %s", pidFileName) if fileutils.FileExists(pidFileName) { - logging.Debug("Found activation pid file: %s", pidFileName) return pid } - logging.Debug("Activation pid file not found") if ppid == 0 { logging.Debug("Parent PID is 0")