mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
Be slightly more verbose in error message
Including the full path is always useful. Also use PID_FMT in one more place.
This commit is contained in:
@@ -840,7 +840,7 @@ int cg_attach(const char *controller, const char *path, pid_t pid) {
|
||||
if (r > 0 && streq(controller, SYSTEMD_CGROUP_CONTROLLER)) {
|
||||
r = cg_attach(SYSTEMD_CGROUP_CONTROLLER_LEGACY, path, pid);
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to attach %d to compat systemd cgroup %s: %m", pid, path);
|
||||
log_warning_errno(r, "Failed to attach "PID_FMT" to compat systemd cgroup %s: %m", pid, path);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -49,7 +49,7 @@ static int chown_cgroup_path(const char *path, uid_t uid_shift) {
|
||||
"cgroup.subtree_control")
|
||||
if (fchownat(fd, fn, uid_shift, uid_shift, 0) < 0)
|
||||
log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
|
||||
"Failed to chown() cgroup file %s, ignoring: %m", fn);
|
||||
"Failed to chown \"%s/%s\", ignoring: %m", path, fn);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user