From 646915208429bf91bb744e0c25cf405c80b88409 Mon Sep 17 00:00:00 2001 From: Jiping Yin Date: Mon, 14 Oct 2024 10:33:52 +0800 Subject: [PATCH] feat: agent - eBPF Adjust log output for get_process_starttime_and_comm (#8293) --- agent/src/ebpf/user/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/src/ebpf/user/common.c b/agent/src/ebpf/user/common.c index 11f470a13b5..83d883bdda0 100644 --- a/agent/src/ebpf/user/common.c +++ b/agent/src/ebpf/user/common.c @@ -538,7 +538,7 @@ u64 get_process_starttime_and_comm(pid_t pid, char *name_base, int len) snprintf(file, sizeof(file), "/proc/%d/stat", pid); if (access(file, F_OK)) { - ebpf_warning("file %s is not exited\n", file); + ebpf_debug("file %s is not exited\n", file); return 0; }