dropper/0.0.14 #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "dropper/0.0.14"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixed 2 critical logging performance issues: - routes.py: logger.exception(f"Failed to list files: {e!s}") → logger.exception("Failed to list files: %s", e) - storage.py: logger.exception(f"Upload failed: {e!s}") → logger.exception("Upload failed: %s", e) Progress: 45 → 43 errors remaining Focus: Eliminating f-string performance overhead in logging callsFixed 1 more logging f-string: - storage.py: logger.info(f"Received file: {file.filename} ({file.content_type})") → logger.info("Received file: %s (%s)", file.filename, file.content_type) Status: 43 → 42 errors remaining Total Progress: 110 → 42 = **62% reduction from original! Issues: storage.py has deep type problems causing cascading errors. Focus: Complete remaining high-impact issues, then assess type fixes.