From d8add6aadaec3fb0c8b259df27875f299d33d6e0 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 24 Aug 2026 21:37:44 +0200 Subject: [PATCH] Simplify recent market data gathering --- .../queues/data-gathering/data-gathering.processor.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/api/src/services/queues/data-gathering/data-gathering.processor.ts b/apps/api/src/services/queues/data-gathering/data-gathering.processor.ts index 97687fcad..533195134 100644 --- a/apps/api/src/services/queues/data-gathering/data-gathering.processor.ts +++ b/apps/api/src/services/queues/data-gathering/data-gathering.processor.ts @@ -101,7 +101,8 @@ export class DataGatheringProcessor { this.logger.log( `Historical market data gathering has been started for ${symbol} (${dataSource}) at ${format( currentDate, - DATE_FORMAT + DATE_FORMAT, + { in: utc } )}${force ? ' (forced update)' : ''}` ); @@ -156,7 +157,8 @@ export class DataGatheringProcessor { this.logger.log( `Historical market data gathering has been completed for ${symbol} (${dataSource}) at ${format( currentDate, - DATE_FORMAT + DATE_FORMAT, + { in: utc } )}` ); } catch (error) {