From 0c9448fa8201ad2e2a2dde57f4d4b7e48a34c522 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 26 Oct 2018 16:13:07 +0200 Subject: [PATCH] copy: remove reflinking debug message It pretty much ends up in an inner loop most of the time, hence let's just remove it. This is pretty easily debuggable with strace anyway... --- src/basic/copy.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/basic/copy.c b/src/basic/copy.c index 5cc3a9572b..7a4db459e3 100644 --- a/src/basic/copy.c +++ b/src/basic/copy.c @@ -163,8 +163,6 @@ int copy_bytes_full( return 1; /* we copied only some number of bytes, which worked, but this means we didn't hit EOF, return 1 */ } } - - log_debug_errno(r, "Reflinking didn't work, falling back to non-reflink copying: %m"); } } }