From fcbffbdbc0a29287c65bfc378eb8aa99fd6490c1 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Tue, 3 Sep 2019 12:02:09 -0500 Subject: [PATCH] bcache: change log level for prefetch message The "new new blocks" message was printed as an error but it's not an error condition. --- lib/device/bcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }