Skip to content

Commit 6896307

Browse files
committed
chore: drop redundant exc_info from sync logger.exception
Made-with: Cursor
1 parent 865cd77 commit 6896307

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ghdcbot/bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1801,7 +1801,7 @@ def _run_sync_and_close() -> None:
18011801
content="✅ Sync complete! Notifications sent for new GitHub events.",
18021802
)
18031803
except Exception as exc:
1804-
logger.exception("Sync failed", exc_info=True)
1804+
logger.exception("Sync failed")
18051805
err_text = f"❌ Sync failed: {exc}"
18061806
if status_msg is not None:
18071807
try:

0 commit comments

Comments
 (0)