Skip to content

Commit 1958768

Browse files
authored
[client] Downgrade PartitionNotExistException log level from WARN to DEBUG (#3019)
1 parent 327c6d1 commit 1958768

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fluss-client/src/main/java/org/apache/fluss/client/metadata/MetadataUpdater.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ public void updateMetadata(
285285
}
286286
LOG.warn("Failed to update metadata, but the exception is re-triable.", t);
287287
} else if (t instanceof PartitionNotExistException) {
288-
LOG.warn("Failed to update metadata because the partition does not exist", t);
288+
LOG.debug("Failed to update metadata because the partition does not exist", t);
289289
throw (PartitionNotExistException) t;
290290
} else {
291291
throw new FlussRuntimeException("Failed to update metadata", t);

0 commit comments

Comments
 (0)