This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch 4.0.2-rc01-debug in repository https://gitbox.apache.org/repos/asf/doris.git
commit a28de5846a96a537dd1128e53964f71df354963e Author: morningman <[email protected]> AuthorDate: Thu Dec 4 15:05:05 2025 +0800 [tmp] add log to debug --- .../java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java b/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java index 39e7d840e4a..9c4d7662c24 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java +++ b/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java @@ -139,6 +139,8 @@ public class IcebergMetadataOps implements ExternalMetadataOps { try { return executionAuthenticator.execute(() -> listNestedNamespaces(getNamespace())); } catch (Exception e) { + LOG.warn("failed to list database names in catalog {}, root cause: {}", + dorisCatalog.getName(), Util.getRootCauseMessage(e), e); throw new RuntimeException("Failed to list database names, error message is:" + e.getMessage(), e); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
