Improve parse log with sql

pull/3679/head
Chocobozzz 2021-02-01 15:03:32 +01:00
parent 6949a1a111
commit cb5c2abc99
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 15 additions and 2 deletions

View File

@ -223,7 +223,7 @@ export class PeertubePlayerManager {
const plugins: VideoJSPluginOptions = {
peertube: {
mode,
autoplay, // Use peertube plugin autoplay because we get the file by webtorrent
autoplay, // Use peertube plugin autoplay because we could get the file by webtorrent
videoViewUrl: commonOptions.videoViewUrl,
videoDuration: commonOptions.videoDuration,
userWatching: commonOptions.userWatching,

View File

@ -10,6 +10,7 @@ import { labelFormatter } from '../server/helpers/logger'
import { CONFIG } from '../server/initializers/config'
import { mtimeSortFilesDesc } from '../shared/core-utils/logs/logs'
import { inspect } from 'util'
import { format as sqlFormat } from 'sql-formatter'
program
.option('-l, --level [level]', 'Level log (debug/info/warn/error)')
@ -21,7 +22,8 @@ const excludedKeys = {
message: true,
splat: true,
timestamp: true,
label: true
label: true,
sql: true
}
function keysExcluder (key, value) {
return excludedKeys[key] === true ? undefined : value
@ -32,6 +34,17 @@ const loggerFormat = winston.format.printf((info) => {
if (additionalInfos === '{}') additionalInfos = ''
else additionalInfos = ' ' + additionalInfos
if (info.sql) {
if (CONFIG.LOG.PRETTIFY_SQL) {
additionalInfos += '\n' + sqlFormat(info.sql, {
language: 'sql',
ident: ' '
})
} else {
additionalInfos += ' - ' + info.sql
}
}
return `[${info.label}] ${toTimeFormat(info.timestamp)} ${info.level}: ${info.message}${additionalInfos}`
})