From: Christian Brauner Date: Wed, 10 Oct 2018 11:53:00 +0000 (+0200) Subject: conf: log prlimit setup X-Git-Tag: lxc-3.1.0~52^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2689%2Fhead;p=thirdparty%2Flxc.git conf: log prlimit setup Signed-off-by: Christian Brauner --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 856fde1dd..a45d88291 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -2647,8 +2647,10 @@ int setup_resource_limits(struct lxc_list *limits, pid_t pid) SYSERROR("Failed to set limit %s", lim->resource); return -1; } + + TRACE("Setup \"%s\" limit", lim->resource); #else - ERROR("Cannot set limit %s as prlimit is missing", lim->resource); + ERROR("Cannot set limit \"%s\" as prlimit is missing", lim->resource); return -1; #endif }