Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 33a1bdf

Browse files
Display Job URL at Info Log Level
Original Discussion at https://github.com/dbt-labs/dbt-bigquery/pull/697/files#r1212630246 > Job URL is super useful even beyond debugging code, since it's the ground truth of what logic and process is actually executing the model Signed-off-by: thatInfrastructureGuy <[email protected]>
1 parent e1b6e74 commit 33a1bdf

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: Features
2+
body: Display Job URL at Info Log Level
3+
time: 2024-12-10T17:56:14.943063-08:00
4+
custom:
5+
Author: thatInfrastructureGuy
6+
Issue: "696"

dbt/adapters/bigquery/connections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ def _query_and_results(
578578
and query_job.job_id is not None
579579
and query_job.project is not None
580580
):
581-
logger.debug(
581+
logger.info(
582582
self._bq_job_link(query_job.location, query_job.project, query_job.job_id)
583583
)
584584

0 commit comments

Comments
 (0)