From 33fc5865fe51fef8ca876022f52e12a50a3184d6 Mon Sep 17 00:00:00 2001 From: William Moore Date: Thu, 12 Jan 2023 11:37:23 -0600 Subject: [PATCH] Update to add date to exception --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index cb391ec..bfc80b7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -73,7 +73,7 @@ async function temperatoTick() { } } } catch (e) { - console.error(e); + console.error(new Date(), e); } }