From: Serge Hallyn Date: Thu, 9 Feb 2012 17:06:31 +0000 (-0600) Subject: lxc-init: use INFO when failed to mount /dev/shm X-Git-Tag: lxc-0.8.0-rc2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3283db096f9a70590476ac16fbba6cf1621ad9b6;p=thirdparty%2Flxc.git lxc-init: use INFO when failed to mount /dev/shm Signed-off-by: Serge Hallyn Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/utils.c b/src/lxc/utils.c index d96914bc5..52a463d15 100644 --- a/src/lxc/utils.c +++ b/src/lxc/utils.c @@ -133,7 +133,7 @@ extern int lxc_setup_fs(void) /* if we can't mount /dev/shm, continue anyway */ if (mount_fs("shmfs", "/dev/shm", "tmpfs")) - DEBUG("failed to mount /dev/shm"); + INFO("failed to mount /dev/shm"); /* If we were able to mount /dev/shm, then /dev exists */ /* Sure, but it's read-only per config :) */