chiark / gitweb /
Be slightly more verbose in error message
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 2 Jul 2017 16:03:25 +0000 (12:03 -0400)
committerSven Eden <yamakuzure@gmx.net>
Tue, 25 Jul 2017 07:46:53 +0000 (09:46 +0200)
Including the full path is always useful.

Also use PID_FMT in one more place.

src/basic/cgroup-util.c

index ec2c529914d32168689e2222dc5f504407ecb06b..0f4c955a01491e9e3ac0054dcb6ff36c1362ca07 100644 (file)
@@ -845,7 +845,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;