You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/plan/node/write/ObjectNode.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -284,8 +284,8 @@ public ByteBuffer serialize() {
284
284
}
285
285
}
286
286
}
287
-
if (!readSuccess) {
288
-
LOGGER.error("Error when read tmp object file {}.", filePath.toString(), ioException);
287
+
if (!readSuccess && LOGGER.isDebugEnabled()) {
288
+
LOGGER.debug("Error when read object file {}.", filePath.toString(), ioException);
0 commit comments