From fc59ebc0e27e52c36ab07b29e1bc81d41be1527e Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 9 Feb 2026 22:04:17 -0800 Subject: [PATCH] adjust logs --- weed/s3api/iceberg/iceberg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/s3api/iceberg/iceberg.go b/weed/s3api/iceberg/iceberg.go index 9235cb6cb..b3c3049af 100644 --- a/weed/s3api/iceberg/iceberg.go +++ b/weed/s3api/iceberg/iceberg.go @@ -495,7 +495,7 @@ func (s *Server) handleCreateNamespace(w http.ResponseWriter, r *http.Request) { err := s.filerClient.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error { mgrClient := s3tables.NewManagerClient(client) - glog.Errorf("Iceberg: handleCreateNamespace calling Execute with identityName=%s", identityName) + glog.V(2).Infof("Iceberg: handleCreateNamespace calling Execute with identityName=%s", identityName) return s.tablesManager.Execute(r.Context(), mgrClient, "CreateNamespace", createReq, &createResp, identityName) })