updated loggers to getLogger

This commit is contained in:
Bojan Kucera 2025-06-08 19:52:11 -04:00
parent 1ccdbddb71
commit 2aaeba2f6c
16 changed files with 72 additions and 97 deletions

View file

@ -1,4 +1,4 @@
import { Logger } from '@stock-bot/logger';
import { getLogger } from '@stock-bot/logger';
import type {
InfluxLineData,
InfluxWriteOptions,
@ -17,7 +17,7 @@ interface QuestDBClientInterface {
* which QuestDB supports natively for optimal time-series data insertion.
*/
export class QuestDBInfluxWriter {
private readonly logger: Logger;
private readonly logger: ReturnType<typeof getLogger>;
private writeBuffer: string[] = [];
private flushTimer: NodeJS.Timeout | null = null;
private readonly defaultOptions: Required<InfluxWriteOptions> = {
@ -29,7 +29,7 @@ export class QuestDBInfluxWriter {
retryDelay: 1000
};
constructor(private readonly client: QuestDBClientInterface) {
this.logger = new Logger('QuestDBInfluxWriter');
this.logger = getLogger('questdb-influx-writer');
}
/**