mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-17 09:39:46 +00:00
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:
parent
f852bcb188
commit
1eb072cc69
9 changed files with 1193 additions and 10 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue