From 0c45d2739fafd1f7b93c2a826a00a81356be0c71 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 14 Aug 2022 21:40:00 -0400 Subject: fix logger day of month --- src/lib/utils/BushLogger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils/BushLogger.ts b/src/lib/utils/BushLogger.ts index 21d10a0..4acda69 100644 --- a/src/lib/utils/BushLogger.ts +++ b/src/lib/utils/BushLogger.ts @@ -107,7 +107,7 @@ function getTimeStamp(): string { const now = new Date(); const minute = pad(now.getMinutes()); const hour = pad(now.getHours()); - const date = `${pad(now.getMonth() + 1)}/${pad(now.getDay())}`; + const date = `${pad(now.getMonth() + 1)}/${pad(now.getDate())}`; return `${date} ${hour}:${minute}`; } -- cgit