summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2019-09-03 12:02:09 -0500
committerDavid Teigland <teigland@redhat.com>2019-09-03 12:02:09 -0500
commitfcbffbdbc0a29287c65bfc378eb8aa99fd6490c1 (patch)
treefaa93f6a6032dbf3ee775548706cd3e1eadacdf9
parent25b58310e3d606a85abc9bd50991ccb7ddcbfe25 (diff)
downloadlvm2-fcbffbdbc0a29287c65bfc378eb8aa99fd6490c1.tar.gz
bcache: change log level for prefetch message
The "new new blocks" message was printed as an error but it's not an error condition.
-rw-r--r--lib/device/bcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/device/bcache.c b/lib/device/bcache.c
index 04fbf3521..d10041977 100644
--- a/lib/device/bcache.c
+++ b/lib/device/bcache.c
@@ -957,7 +957,7 @@ static struct block *_new_block(struct bcache *cache, int fd, block_address i, b
_writeback(cache, 16); // FIXME: magic number
_wait_io(cache);
} else {
- log_error("bcache no new blocks for fd %d index %u",
+ log_debug("bcache no new blocks for fd %d index %u",
fd, (uint32_t) i);
return NULL;
}