From 1023063ac24fff3a143d2486925cd52d0fac800c Mon Sep 17 00:00:00 2001 From: Matthias Niehoff Date: Tue, 6 Jan 2026 20:04:00 +0100 Subject: [PATCH 1/2] add debug logging for the build output --- bundle/artifacts/build.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bundle/artifacts/build.go b/bundle/artifacts/build.go index f9c6f810e9..6d89b8c07c 100644 --- a/bundle/artifacts/build.go +++ b/bundle/artifacts/build.go @@ -101,6 +101,8 @@ func doBuild(ctx context.Context, artifactName string, a *config.Artifact) error return fmt.Errorf("build failed %s, error: %v, output: %s", artifactName, err, out) } + log.Debugf(ctx, "build output for %s:\n%s", artifactName, out) + return nil } From 78e98c9bd2321dd3c4620b4fdfa5f39d5f4a93cd Mon Sep 17 00:00:00 2001 From: Matthias Niehoff Date: Tue, 6 Jan 2026 20:12:21 +0100 Subject: [PATCH 2/2] added PR to NEXT_CHANGELOG.md --- NEXT_CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index ed03a4adc7..c384f1410a 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -15,6 +15,7 @@ * Add `ipykernel` to the `default` template to enable Databricks Connect notebooks in Cursor/VS Code ([#4164](https://github.com/databricks/cli/pull/4164)) * Add interactive SQL warehouse picker to `default-sql` and `dbt-sql` bundle templates ([#4170](https://github.com/databricks/cli/pull/4170)) * Add `name`, `target` and `mode` fields to the deployment metadata file ([#4180](https://github.com/databricks/cli/pull/4180)) +* Log artifact build output in debug mode ([#4208](https://github.com/databricks/cli/pull/4208)) ### Dependency updates