Skip to content

Commit

Permalink
feat: agent - eBPF Adjust log output for get_process_starttime_and_co…
Browse files Browse the repository at this point in the history
…mm (#8293)
  • Loading branch information
yinjiping authored Oct 14, 2024
1 parent 6ab39a1 commit 6469152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/src/ebpf/user/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 6469152

Please sign in to comment.