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

Commit d6e9a8e

Browse files
committed
remove debug info from browser
1 parent fa83193 commit d6e9a8e

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

src/lattice/routes/storage_buckets/browse.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -291,23 +291,6 @@ async def list_files(
291291
# For Azure with az protocol, use just the requested path
292292
full_path = req.path.lstrip("/") if req.path != "/" else ""
293293

294-
print("DEBUG INFO:")
295-
print(f"Bucket ID: {bucket_id}")
296-
print(f"Request path: {req.path}")
297-
print(f"Base path: {base_path}")
298-
print(f"Full path: {full_path}")
299-
print(f"Protocol: {fs.protocol}")
300-
print(f"Storage options: {req.storage_options}")
301-
print(f"Bucket source: {bucket.source}")
302-
303-
# Additional Azure-specific debug info
304-
if hasattr(fs, "account_name"):
305-
print(f"Azure account name: {fs.account_name}")
306-
if hasattr(fs, "container_name"):
307-
print(f"Azure container name: {fs.container_name}")
308-
309-
print(f"Listing files in bucket {bucket_id} at path: {full_path}")
310-
311294
try:
312295
# For Azure, get container name from the source URL
313296
container_name = None

0 commit comments

Comments
 (0)