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

Commit d87909e

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 d87909e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -578,9 +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(
582-
self._bq_job_link(query_job.location, query_job.project, query_job.job_id)
583-
)
581+
logger.info(self._bq_job_link(query_job.location, query_job.project, query_job.job_id))
584582

585583
timeout = self._retry.create_job_execution_timeout()
586584
try:

0 commit comments

Comments
 (0)