[2026-05-22] 일일 리포트 — 14건 승7패7 -127,406원 / TimeoutError 로그 버그 수정

- reports/daily/2026-05-22.md 생성
- main.py: except 블록에 type(e).__name__ 추가 (빈 에러 메시지 방지)
- kis_client._request: asyncio.TimeoutError 명시적 catch → RuntimeError re-raise
This commit is contained in:
2026-05-22 15:34:28 +09:00
parent 2aeb024c4c
commit 4b18db1152
3 changed files with 71 additions and 9 deletions
+2 -2
View File
@@ -447,7 +447,7 @@ class StockBot:
)
except Exception as e:
logger.error(f"진입 체크 오류 {ticker}: {e}")
logger.error(f"진입 체크 오류 {ticker}: {type(e).__name__}: {e}")
# ─────────────────────────────────────────
# 청산 체크
@@ -487,7 +487,7 @@ class StockBot:
await asyncio.sleep(1.1)
except Exception as e:
logger.error(f"청산 체크 오류 {ticker}: {e}")
logger.error(f"청산 체크 오류 {ticker}: {type(e).__name__}: {e}")
async def _do_exit(self, ticker: str, pos: dict,
current: float, qty: int, reason: str):