1
0
Fork 0
gallery-dl-archive-manager/lib/log.js
Lightling 3933505fc6 better error handling
- rate limit is stderr, so need to check to make sure only finishing on other errors
- color errors in log
- log errors to userDb
- use fallback date in case dates weren't logged (e.g. /media failed)
- report on not-found users, which may indicate a username change or deleted account
- report on authorization errors
2024-02-10 15:07:54 -05:00

31 lines
1 KiB
JavaScript

const options = { year: 'numeric', day: '2-digit', month: '2-digit', hour: '2-digit', 'minute': '2-digit', second: '2-digit' };
const osLocale = (process.env.LANG || process.env.LANGUAGE || process.env.LC_ALL || process.env.LC_MESSAGES).split('.')[0].replace('_', '-');
const dtFormat = Intl.DateTimeFormat(osLocale, options);
/**
* Gets formatted timestamp
* @returns {string} timestamp string
*/
export const getTime = () => {
return dtFormat.format(new Date());
}
/**
* Logs formatted output to the console
* @param {string} src the source script doing the logging
* @param {string} msg the message to log
*/
export const log = (src, msg) => {
const time = getTime();
console.log(`${time} : ${src} : ${msg}`);
};
/**
* Logs formatted output to the console as an error
* @param {string} src the source script doing the logging
* @param {string} msg the message to log
*/
export const error = (src, msg) => {
const time = new Date().toISOString();
console.error(`\x1b[33m${time} : ${src} : ${msg}\x1b[0m`);
}