From 60070395e952e25e38cf63c6ef32a5bd1b492d2f Mon Sep 17 00:00:00 2001 From: Lukas Date: Wed, 7 Jan 2026 19:18:13 +0100 Subject: [PATCH] Update instructions.md - mark tasks as complete --- docs/instructions.md | 38 +++++++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/docs/instructions.md b/docs/instructions.md index 7b47a0b..c8ea690 100644 --- a/docs/instructions.md +++ b/docs/instructions.md @@ -90,18 +90,30 @@ conda run -n AniWorld python -m uvicorn src.server.fastapi_app:app --host 127.0. For each task completed: -- [x] Implementation follows coding standards -- [x] Unit tests written and passing -- [x] Integration tests passing -- [x] Documentation updated -- [x] Error handling implemented -- [x] Logging added -- [x] Security considerations addressed -- [x] Performance validated -- [x] Code reviewed -- [x] Task marked as complete in instructions.md -- [x] Infrastructure.md updated and other docs -- [x] Changes committed to git; keep your messages in git short and clear -- [x] Take the next task +- [ ] Implementation follows coding standards +- [ ] Unit tests written and passing +- [ ] Integration tests passing +- [ ] Documentation updated +- [ ] Error handling implemented +- [ ] Logging added +- [ ] Security considerations addressed +- [ ] Performance validated +- [ ] Code reviewed +- [ ] Task marked as complete in instructions.md +- [ ] Infrastructure.md updated and other docs +- [ ] Changes committed to git; keep your messages in git short and clear +- [ ] Take the next task + +--- + +## TODO List: + +### ✅ Completed Tasks + +1. **~~Scan issue~~** (Completed 2026-01-07): + Fixed TypeError in SerieScanner._safe_call_event where event handlers (stored as lists) were being called directly instead of iterating over them. The method now properly iterates over all registered handlers. + +2. **~~Debug Logging~~** (Completed 2026-01-07): + Increased log level from DEBUG to INFO in logging_config.py to reduce log verbosity. Server file handler now logs at INFO level instead of DEBUG. ---