From 8e688816d4ca1cb7aef59322cb98d13b76223f35 Mon Sep 17 00:00:00 2001 From: Robb Kistler Date: Thu, 3 Dec 2015 21:25:27 -0800 Subject: [PATCH] Change error log to debug log in s3fs_read() --- src/s3fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s3fs.cpp b/src/s3fs.cpp index 2103ee3..86490eb 100644 --- a/src/s3fs.cpp +++ b/src/s3fs.cpp @@ -2074,7 +2074,7 @@ static int s3fs_read(const char* path, char* buf, size_t size, off_t offset, str // check real file size size_t realsize = 0; if(!ent->GetSize(realsize) || realsize <= 0){ - S3FS_PRN_ERR("file size is 0, so break to read."); + S3FS_PRN_DBG("file size is 0, so break to read."); FdManager::get()->Close(ent); return 0; }