X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fparse-log.ts;h=d22e902667ade5d25251b1781228befba486fa39;hb=687d638c2bee0d223f206168173b1b95adbad983;hp=9f67c0d5364e3e4cf39580b658c5698886159f67;hpb=3aa5cea8fec998805e32c0480884906d8e4fd490;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/parse-log.ts b/scripts/parse-log.ts index 9f67c0d53..d22e90266 100755 --- a/scripts/parse-log.ts +++ b/scripts/parse-log.ts @@ -1,5 +1,5 @@ import * as program from 'commander' -import { createReadStream } from 'fs' +import { createReadStream, readdirSync, statSync } from 'fs' import { join } from 'path' import { createInterface } from 'readline' import * as winston from 'winston' @@ -29,7 +29,7 @@ const loggerFormat = winston.format.printf((info) => { return `[${info.label}] ${toTimeFormat(info.timestamp)} ${info.level}: ${info.message}${additionalInfos}` }) -const logger = new winston.createLogger({ +const logger = winston.createLogger({ transports: [ new winston.transports.Console({ level: program['level'] || 'debug', @@ -52,7 +52,10 @@ const logLevels = { debug: logger.debug.bind(logger) } -const path = join(CONFIG.STORAGE.LOG_DIR, 'peertube.log') +const logFiles = readdirSync(CONFIG.STORAGE.LOG_DIR) +const lastLogFile = getNewestFile(logFiles, CONFIG.STORAGE.LOG_DIR) + +const path = join(CONFIG.STORAGE.LOG_DIR, lastLogFile) console.log('Opening %s.', path) const rl = createInterface({ @@ -74,3 +77,17 @@ function toTimeFormat (time: string) { return new Date(timestamp).toISOString() } + +// Thanks: https://stackoverflow.com/a/37014317 +function getNewestFile (files: string[], basePath: string) { + const out = [] + + files.forEach(file => { + const stats = statSync(basePath + '/' + file) + if (stats.isFile()) out.push({ file, mtime: stats.mtime.getTime() }) + }) + + out.sort((a, b) => b.mtime - a.mtime) + + return (out.length > 0) ? out[ 0 ].file : '' +}