17 lines
910 B
JavaScript
17 lines
910 B
JavaScript
import { appendFileSync } from "fs"
|
|
import { default as settings } from '../settings.json' with {type: "json"}
|
|
|
|
export default function (fileName, item) {
|
|
if (settings.disableLogging) return
|
|
const dateToday = new Date(Date.now())
|
|
const UTCYears = dateToday.getUTCFullYear()
|
|
const UTCMonths = dateToday.getUTCMonth() + 1
|
|
const UTCDays = dateToday.getUTCDate()
|
|
const UTCHours = dateToday.getUTCHours()
|
|
const UTCMinutes = dateToday.getUTCMinutes().toString().padStart(2, '0')
|
|
const UTCSeconds = dateToday.getUTCSeconds().toString().padStart(2, '0')
|
|
const UTCMilliSeconds = dateToday.getUTCMilliseconds().toString().padStart(3, '0')
|
|
const filenameToday = `${UTCMonths}-${UTCDays}-${UTCYears}`
|
|
const logDate = `${UTCMonths}/${UTCDays}/${UTCYears} ${UTCHours}:${UTCMinutes}:${UTCSeconds}.${UTCMilliSeconds}`
|
|
appendFileSync(`logs/${filenameToday}/${fileName}.txt`, `[${logDate}] ${item}\n`)
|
|
}
|