--- a/route/route.go +++ b/route/route.go @@ -421,19 +421,19 @@ } else { if processInfo.ProcessPath != "" { if processInfo.UserName != "" { - r.logger.InfoContext(ctx, "found process path: ", processInfo.ProcessPath, ", user: ", processInfo.UserName) + r.logger.DebugContext(ctx, "found process path: ", processInfo.ProcessPath, ", user: ", processInfo.UserName) // OMV: info -> debug } else if processInfo.UserId != -1 { - r.logger.InfoContext(ctx, "found process path: ", processInfo.ProcessPath, ", user id: ", processInfo.UserId) + r.logger.DebugContext(ctx, "found process path: ", processInfo.ProcessPath, ", user id: ", processInfo.UserId) // OMV: info -> debug } else { - r.logger.InfoContext(ctx, "found process path: ", processInfo.ProcessPath) + r.logger.DebugContext(ctx, "found process path: ", processInfo.ProcessPath) // OMV: info -> debug } } else if processInfo.AndroidPackageName != "" { r.logger.InfoContext(ctx, "found package name: ", processInfo.AndroidPackageName) } else if processInfo.UserId != -1 { if processInfo.UserName != "" { - r.logger.InfoContext(ctx, "found user: ", processInfo.UserName) + r.logger.DebugContext(ctx, "found user: ", processInfo.UserName) // OMV: info -> debug } else { - r.logger.InfoContext(ctx, "found user id: ", processInfo.UserId) + r.logger.DebugContext(ctx, "found user id: ", processInfo.UserId) // OMV: info -> debug } } metadata.ProcessInfo = processInfo