filesafe/logger.js
Bobby Wibowo 2e40124c62
Updated logger.js
Manually parse date to actually print the dates in current timezone.
I actually never intended it to use UTC.
I wasn't really paying attention...

Also during development, shortened version will be used instead,
which is basically only showing hours, mins, and secs.
2019-09-21 14:29:08 +07:00

49 lines
1.1 KiB
JavaScript

const { inspect } = require('util')
const self = {}
// Only show shortened version (time) during development
const short = process.env.NODE_ENV === 'development'
const now = () => {
const time = new Date()
const parsed = {
hours: time.getHours(),
minutes: time.getMinutes(),
seconds: time.getSeconds()
}
if (!short) {
parsed.month = time.getMonth() + 1
parsed.date = time.getDate()
}
// Add leading zeroes and slice
Object.keys(parsed).forEach(key => {
parsed[key] = ('0' + parsed[key]).slice(-2)
})
return (!short ? `${time.getFullYear()}-${parsed.month}-${parsed.date} ` : '') +
`${parsed.hours}:${parsed.minutes}:${parsed.seconds}`
}
const clean = item => {
if (typeof item === 'string') return item
const cleaned = inspect(item, { depth: 0 })
return cleaned
}
const write = (content, options = {}) => {
const stream = options.error ? process.stderr : process.stdout
stream.write(`[${now()}] ${options.prefix || ''}${clean(content)}\n`)
}
self.log = write
self.error = (content, options = {}) => {
options.error = true
write(content, options)
}
module.exports = self