summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorthecoder-001 <ayush06feb@gmail.com>2024-04-28 23:53:27 +0530
committerthecoder-001 <ayush06feb@gmail.com>2024-04-28 23:53:27 +0530
commit5ba45f76330ddead51c76ce449d923ca5554d92c (patch)
tree45c506d9fea56624e9c518f27564770a087b6e61 /src
parent9a3739574443042990b6f5d164bfb3f0503f25f9 (diff)
Remove logging for uid without username
Signed-off-by: thecoder-001 <ayush06feb@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/osx/btop_collect.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/osx/btop_collect.cpp b/src/osx/btop_collect.cpp
index 3f4b63f..1b752ad 100644
--- a/src/osx/btop_collect.cpp
+++ b/src/osx/btop_collect.cpp
@@ -1253,7 +1253,6 @@ namespace Proc {
new_proc.user = pwd->pw_name;
} else {
new_proc.user = std::to_string(kproc.kp_eproc.e_ucred.cr_uid);
- Logger::warning("Could not retrieve user information for user ID:" + std::to_string(kproc.kp_eproc.e_ucred.cr_uid) + " (pid:" + std::to_string(pid) + ")");
}
}
new_proc.p_nice = kproc.kp_proc.p_nice;