core/dbus-unit: don't log cgroup v1 property name

This commit is contained in:
Mike Yuan
2023-11-24 19:12:06 +08:00
parent ed272a9ff5
commit 35c08a56a1

View File

@@ -1075,7 +1075,7 @@ static int property_get_current_memory(
r = unit_get_memory_current(u, &sz);
if (r < 0 && r != -ENODATA)
log_unit_warning_errno(u, r, "Failed to get memory.usage_in_bytes attribute: %m");
log_unit_warning_errno(u, r, "Failed to get current memory usage from cgroup: %m");
return sd_bus_message_append(reply, "t", sz);
}