1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 17:59:37 +02:00

Update server dependencies

This commit is contained in:
Chocobozzz 2021-02-03 09:33:05 +01:00
parent 29f148a613
commit ba5a8d89bb
No known key found for this signature in database
GPG key ID: 583A612D890159BE
42 changed files with 1322 additions and 1553 deletions

View file

@ -17,6 +17,8 @@ program
.option('-f, --files [file...]', 'Files to parse. If not provided, the script will parse the latest log file from config)')
.parse(process.argv)
const options = program.opts()
const excludedKeys = {
level: true,
message: true,
@ -38,7 +40,7 @@ const loggerFormat = winston.format.printf((info) => {
if (CONFIG.LOG.PRETTIFY_SQL) {
additionalInfos += '\n' + sqlFormat(info.sql, {
language: 'sql',
ident: ' '
indent: ' '
})
} else {
additionalInfos += ' - ' + info.sql
@ -51,7 +53,7 @@ const loggerFormat = winston.format.printf((info) => {
const logger = winston.createLogger({
transports: [
new winston.transports.Console({
level: program['level'] || 'debug',
level: options.level || 'debug',
stderrLevels: [],
format: winston.format.combine(
winston.format.splat(),
@ -76,7 +78,7 @@ run()
.catch(err => console.error(err))
function run () {
return new Promise(async res => {
return new Promise<void>(async res => {
const files = await getFiles()
for (const file of files) {
@ -114,7 +116,7 @@ async function getNewestFile (files: string[], basePath: string) {
}
async function getFiles () {
if (program['files']) return program['files']
if (options.files) return options.files
const logFiles = await readdir(CONFIG.STORAGE.LOG_DIR)