diff --git a/src/utils/Logger.ts b/src/utils/Logger.ts index 33cf23d..83267b5 100644 --- a/src/utils/Logger.ts +++ b/src/utils/Logger.ts @@ -33,7 +33,7 @@ export function log(m: string, t: LogType, c?: CustomColorProps): void { const logType = AllLogs[t].m const logColor = AllLogs[t].c - const message = `[${logType}] ${time} | ${m}` + const message = `${time} - [${logType}] | ${m}` if (!c) { if (t === "info") { console.log(message)