From: Arvin Schnell Date: Wed, 5 Dec 2012 13:48:56 +0000 (+0100) Subject: - disable error messagee in clone function X-Git-Tag: v0.1.3~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07805b2aee11279c99e949bb1931a5ce7867fe55;p=thirdparty%2Fsnapper.git - disable error messagee in clone function --- diff --git a/snapper/AppUtil.cc b/snapper/AppUtil.cc index 8a786dcb..0975ee63 100644 --- a/snapper/AppUtil.cc +++ b/snapper/AppUtil.cc @@ -79,7 +79,8 @@ namespace snapper int r1 = ioctl(dest_fd, BTRFS_IOC_CLONE, src_fd); if (r1 != 0) { - y2err("ioctl failed errno:" << errno << " (" << stringerror(errno) << ")"); + // TODO: too much logging with LVM + // y2err("ioctl failed errno:" << errno << " (" << stringerror(errno) << ")"); } return r1 == 0;