build(logger.ts) Remove day.js dependency in favor of native

This commit is contained in:
Jacob Nguyen
2022-03-11 11:29:35 -06:00
parent cdd8fced24
commit 0513391189
3 changed files with 1 additions and 20 deletions

11
package-lock.json generated
View File

@@ -11,7 +11,6 @@
"dependencies": { "dependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2", "@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2", "@typescript-eslint/parser": "^5.10.2",
"dayjs": "^1.10.7",
"discord.js": "^13.6.0", "discord.js": "^13.6.0",
"eslint": "^8.8.0", "eslint": "^8.8.0",
"prettier": "^2.5.1", "prettier": "^2.5.1",
@@ -4007,11 +4006,6 @@
"node": "*" "node": "*"
} }
}, },
"node_modules/dayjs": {
"version": "1.10.7",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.7.tgz",
"integrity": "sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig=="
},
"node_modules/debug": { "node_modules/debug": {
"version": "4.3.3", "version": "4.3.3",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
@@ -11900,11 +11894,6 @@
"integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==",
"dev": true "dev": true
}, },
"dayjs": {
"version": "1.10.7",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.7.tgz",
"integrity": "sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig=="
},
"debug": { "debug": {
"version": "4.3.3", "version": "4.3.3",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",

View File

@@ -19,7 +19,6 @@
"dependencies": { "dependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2", "@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2", "@typescript-eslint/parser": "^5.10.2",
"dayjs": "^1.10.7",
"discord.js": "^13.6.0", "discord.js": "^13.6.0",
"eslint": "^8.8.0", "eslint": "^8.8.0",
"prettier": "^2.5.1", "prettier": "^2.5.1",

View File

@@ -1,6 +1,3 @@
import dayJS from 'dayjs';
import Timezone from 'dayjs/plugin/timezone';
import UTC from 'dayjs/plugin/timezone';
export enum sEvent { export enum sEvent {
GLOBAL_SLASH, GLOBAL_SLASH,
@@ -17,12 +14,8 @@ export default class Logger {
} }
public log<T extends sEvent>(e: T, guildId: string, message: string) { public log<T extends sEvent>(e: T, guildId: string, message: string) {
dayJS.extend(UTC);
dayJS.extend(Timezone);
dayJS.tz.guess();
// add colored logging? // add colored logging?
const tz = dayJS().format(); console.log(`[${new Date().toISOString()}] [${sEvent[e]}] @ ${guildId} :: ${message}`);
console.log(`[${tz}] [${sEvent[e]}] @ ${guildId} :: ${message}`);
} }
/** /**