Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/unreleased/Features-20241210-175614.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Features
body: Display Job URL at Info Log Level
time: 2024-12-10T17:56:14.943063-08:00
custom:
Author: thatInfrastructureGuy
Issue: "696"
4 changes: 1 addition & 3 deletions dbt/adapters/bigquery/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,9 +578,7 @@ def _query_and_results(
and query_job.job_id is not None
and query_job.project is not None
):
logger.debug(
self._bq_job_link(query_job.location, query_job.project, query_job.job_id)
)
logger.info(self._bq_job_link(query_job.location, query_job.project, query_job.job_id))

timeout = self._retry.create_job_execution_timeout()
try:
Expand Down