We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c355b16 commit 148ded5Copy full SHA for 148ded5
sqlalchemy_bigquery/parse_url.py
@@ -66,11 +66,11 @@ def parse_url(url): # noqa: C901
66
67
if hasattr(url, 'username'):
68
username = url.username or None
69
- logger.critical('parse_url.py username', username)
+ logger.critical(f'parse_url.py username: {username}')
70
71
if hasattr(url, 'email'):
72
email = url.email or None
73
- logger.critical('parse_url.py email', email)
+ logger.critical(f'parse_url.py email: {email}')
74
75
project_id = url.host
76
location = None
0 commit comments