diff --git a/weed/filesys/page_writer/debug_content.go b/weed/filesys/page_writer/debug_content.go index 54ac9c61d..ccd5a55f6 100644 --- a/weed/filesys/page_writer/debug_content.go +++ b/weed/filesys/page_writer/debug_content.go @@ -10,8 +10,12 @@ func CheckByteZero(message string, p []byte, start, stop int64) { break } } - if isAllZero && start != stop { - glog.Errorf("%s is all zeros [%d,%d)", message, start, stop) + if isAllZero { + if start != stop { + glog.Errorf("%s is all zeros [%d,%d)", message, start, stop) + } + } else { + glog.V(4).Infof("%s read some non-zero data [%d,%d)", message, start, stop) } }