chore: Add logging documentation link to TODO file

This commit is contained in:
Marco Pedone 2025-11-06 13:19:12 +01:00
parent 82aeb763a0
commit 17ecc9604f
2 changed files with 2 additions and 1 deletions

View file

@ -11,6 +11,7 @@ TODOS:
LOGGING: LOGGING:
- https://getpino.io/#/docs/api - https://getpino.io/#/docs/api
- https://logbull.com/installation/ - https://logbull.com/installation/
- https://signoz.io/docs/logs-management/send-logs/nodejs-pino-logs/
NEW IDEA TODOS: NEW IDEA TODOS:

View file

@ -17,7 +17,7 @@ import { ee, type OnlineStatus } from "~/server/sse";
import { zChatId, zUserId } from "~/server/utils/zod_types"; import { zChatId, zUserId } from "~/server/utils/zod_types";
import { getKeydbClient } from "~/utils/keydb"; import { getKeydbClient } from "~/utils/keydb";
import { getMessagesArray } from "~/utils/kysely-helper"; import { getMessagesArray } from "~/utils/kysely-helper";
//todo forse cambiare in semplice interval polling invece di sse
export const chatSSERouter = createTRPCRouter({ export const chatSSERouter = createTRPCRouter({
create: protectedProcedure create: protectedProcedure
.input(z.object({ userId: zUserId })) .input(z.object({ userId: zUserId }))