From be55f8ee6573225d08942dde2173df2e4f66f68f Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 22:07:26 +0530 Subject: [PATCH] feat: log robot run error --- server/src/api/record.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/api/record.ts b/server/src/api/record.ts index fef0be9a..b9d78a41 100644 --- a/server/src/api/record.ts +++ b/server/src/api/record.ts @@ -621,7 +621,7 @@ async function executeRun(id: string) { }; } catch (error: any) { - logger.log('info', `Error while running a recording with id: ${id} - ${error.message}`); + logger.log('info', `Error while running a robot with id: ${id} - ${error.message}`); const run = await Run.findOne({ where: { runId: id } }); if (run) { await run.update({