diff --git a/src/storage/blocksstable/slog/ob_storage_log_reader.cpp b/src/storage/blocksstable/slog/ob_storage_log_reader.cpp index 6989e65c6e69214ba8bce6ec0270e65d2f92444b..5603d8dc16b85e051bf1266ee5ece40cb397853c 100644 --- a/src/storage/blocksstable/slog/ob_storage_log_reader.cpp +++ b/src/storage/blocksstable/slog/ob_storage_log_reader.cpp @@ -340,7 +340,7 @@ int ObStorageLogReader::tackle_less_header_len(const common::ObLogEntry& entry) STORAGE_REDO_LOG(INFO, "reach the end of log", K(ret), K(file_id_)); } else { ret = OB_LAST_LOG_NOT_COMPLETE; - STORAGE_REDO_LOG(ERROR, + STORAGE_REDO_LOG(WARN, "last log not complete", K(ret), "remain_data_len", @@ -355,7 +355,7 @@ int ObStorageLogReader::tackle_less_data_len(const common::ObLogEntry& entry) { int ret = OB_SUCCESS; ret = OB_LAST_LOG_NOT_COMPLETE; - STORAGE_REDO_LOG(ERROR, "last log not complete", K_(file_id), K_(log_buffer), K(entry)); + STORAGE_REDO_LOG(WARN, "last log not complete", K_(file_id), K_(log_buffer), K(entry)); hex_dump(log_buffer_.get_data(), static_cast(log_buffer_.get_limit()), true, OB_LOG_LEVEL_WARN); return ret; }