Skip to content

Commit fda9a8c

Browse files
committed
fixed logger object not showing
1 parent 8d09ddd commit fda9a8c

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/webapp/databricks.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,10 @@ def fetch_table_data(
422422
raise ValueError(f"Failed to serialize records to JSON: {e}")
423423

424424
payload_bytes = len(encoded)
425-
print("Final JSON payload size: %.2f MiB (%d bytes)", payload_bytes / (1024 * 1024), payload_bytes,
425+
print(
426+
"Final JSON payload size: %.2f MiB (%d bytes)",
427+
payload_bytes / (1024 * 1024),
428+
payload_bytes,
426429
)
427430
LOGGER.info(
428431
"Final JSON payload size: %.2f MiB (%d bytes)",

0 commit comments

Comments
 (0)