From: Christian Brauner Date: Thu, 18 Feb 2021 16:08:11 +0000 (+0100) Subject: conf: don't log garbage X-Git-Tag: lxc-5.0.0~279^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f640c8187aac72d303d2edbdc25d7b1082e330e7;p=thirdparty%2Flxc.git conf: don't log garbage Signed-off-by: Christian Brauner --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 85b4226cf..24b6cbb92 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -1729,7 +1729,7 @@ static int lxc_setup_dev_console(struct lxc_rootfs *rootfs, if (ret < 0) return log_error_errno(ret, errno, "Failed to mount %d(%s) on \"%s\"", console->pty, console->name, rootfs->buf); - DEBUG("Mounted pty device %d(%s) onto \"%s\"", console->pty, console->name, rootfs->buf); + DEBUG("Mounted pty device %d(%s) onto \"/dev/console\"", console->pty, console->name); return 0; }