From 91132cc3e83526eda108d97d490b99b39c25b43a Mon Sep 17 00:00:00 2001 From: Manuel <30572287+manuel-rw@users.noreply.github.com> Date: Mon, 4 Sep 2023 20:17:42 +0200 Subject: [PATCH] fix: log properties instead of object (#1361) --- src/server/api/routers/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/api/routers/app.ts b/src/server/api/routers/app.ts index 43a7e53ad..8049df3a9 100644 --- a/src/server/api/routers/app.ts +++ b/src/server/api/routers/app.ts @@ -43,7 +43,7 @@ export const appRouter = createTRPCRouter({ } if (error.code === 'ECONNABORTED') { - Consola.error(`Ping timed out for app with id : ${input} (url: ${app.url})`); + Consola.error(`Ping timed out for app with id '${input.id}' in config '${input.configName}' -> url: ${app.url})`); throw new TRPCError({ code: 'TIMEOUT', cause: input,