From 5ca2cf7275484e2ece8e88035cc2e9615d63cfae Mon Sep 17 00:00:00 2001 From: jeremy lee Date: Mon, 19 Aug 2024 15:35:03 -0500 Subject: [PATCH] finish logger implementation --- src/lib/abacus/logger.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/abacus/logger.ts b/src/lib/abacus/logger.ts index 700264a84..a3fa0e060 100644 --- a/src/lib/abacus/logger.ts +++ b/src/lib/abacus/logger.ts @@ -1,6 +1,8 @@ /* eslint-disable no-console */ import type { AbacusLoggingProtocol } from '@/constants/abacus'; +import { dd } from '../analytics/datadog'; + class AbacusLogger implements Omit { d(tag: string, message: string) { if ( @@ -24,12 +26,14 @@ class AbacusLogger implements Omit