Skip to content

Commit

Permalink
Expand logging
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianBracq committed Jan 8, 2025
1 parent ba52fca commit 108d737
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions msticpy/data/drivers/azure_kusto_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,24 @@ def connect(
"""
logger.info(
"Connecting to Kusto cluster: connection_str=%s, args=%s",
"Connecting to Kusto cluster: connection_str=%s, "
"database=%s, "
"timeout=%s, "
"auth_types=%s, "
"mp_az_auth=%s, "
"tenant_id=%s, "
"mp_az_tenant_id=%s, "
"cluster=%s, "
"proxies=%s, ",
connection_str,
kwargs,
database,
timeout,
auth_types,
mp_az_auth,
tenant_id,
mp_az_tenant_id,
cluster,
proxies,
)
self._default_database = database
self._def_timeout = min(timeout or self._def_timeout, _MAX_TIMEOUT)
Expand Down

0 comments on commit 108d737

Please sign in to comment.