From ccaac4ad21cc57ab11a55277e4606b258023ab4f Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Thu, 28 Jul 2022 16:38:10 -0700 Subject: [PATCH] libprocessgroup: Fix a log message Fix the function name in a log message inside CgroupSetup(). Bug: 213617178 Change-Id: I897c831f5e53093df2664e0e8ceefadf9a89369c Signed-off-by: Bart Van Assche --- libprocessgroup/setup/cgroup_map_write.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libprocessgroup/setup/cgroup_map_write.cpp b/libprocessgroup/setup/cgroup_map_write.cpp index 3831ef20a..304248a08 100644 --- a/libprocessgroup/setup/cgroup_map_write.cpp +++ b/libprocessgroup/setup/cgroup_map_write.cpp @@ -410,7 +410,7 @@ bool CgroupSetup() { // Make sure we do this only one time. No need for std::call_once because // init is a single-threaded process if (access(CGROUPS_RC_PATH, F_OK) == 0) { - LOG(WARNING) << "Attempt to call SetupCgroups more than once"; + LOG(WARNING) << "Attempt to call CgroupSetup() more than once"; return true; }