From: Serge Hallyn Date: Fri, 1 Nov 2013 14:11:18 +0000 (-0500) Subject: remove a few noisy, unhelpful INFOs in detect_shared_rootfs() X-Git-Tag: lxc-1.0.0.alpha3~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0779c6f9206ae73b8f22f41134e04e6b292aef96;p=thirdparty%2Flxc.git remove a few noisy, unhelpful INFOs in detect_shared_rootfs() They are a nuisance. Signed-off-by: Serge Hallyn --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 50dc4262e..2a47e77b3 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -1268,7 +1268,6 @@ int detect_shared_rootfs(void) if (!f) return 0; while ((p = fgets(buf, LINELEN, f))) { - INFO("looking at .%s.", p); for (p = buf, i=0; p && i < 4; i++) p = index(p+1, ' '); if (!p) @@ -1277,7 +1276,6 @@ int detect_shared_rootfs(void) if (!p2) continue; *p2 = '\0'; - INFO("now p is .%s.", p); if (strcmp(p+1, "/") == 0) { // this is '/'. is it shared? p = index(p2+1, ' ');