feat(BACKEND): Added Log Management System for better Bug's Tracking

- Background tasks are now logged so non tech users can effectively track the failurte points easily.
This commit is contained in:
MSI\ModSetter 2025-07-16 01:10:33 -07:00
parent f852bcb188
commit 1eb072cc69
9 changed files with 1193 additions and 10 deletions

View file

@ -5,6 +5,7 @@ from .podcasts_routes import router as podcasts_router
from .chats_routes import router as chats_router
from .search_source_connectors_routes import router as search_source_connectors_router
from .llm_config_routes import router as llm_config_router
from .logs_routes import router as logs_router
router = APIRouter()
@ -14,3 +15,4 @@ router.include_router(podcasts_router)
router.include_router(chats_router)
router.include_router(search_source_connectors_router)
router.include_router(llm_config_router)
router.include_router(logs_router)