Alex Mikhalev
7 years ago
9 changed files with 231 additions and 25 deletions
@ -0,0 +1,5 @@ |
|||||||
|
import * as pino from "pino"; |
||||||
|
|
||||||
|
const log = pino(); |
||||||
|
|
||||||
|
export default log; |
@ -0,0 +1,22 @@ |
|||||||
|
declare module "pino/pretty" { |
||||||
|
import { Transform } from "stream"; |
||||||
|
|
||||||
|
interface Formatter { |
||||||
|
(value: any): string; |
||||||
|
} |
||||||
|
|
||||||
|
interface PrettyOptions { |
||||||
|
timeTransOnly?: boolean; |
||||||
|
formatter?: Formatter; |
||||||
|
levelFirst?: boolean; |
||||||
|
messageKey?: string; |
||||||
|
forceColor?: boolean; |
||||||
|
} |
||||||
|
|
||||||
|
interface Pretty { |
||||||
|
(opts: PrettyOptions): Transform; |
||||||
|
} |
||||||
|
|
||||||
|
const pretty: Pretty; |
||||||
|
export = pretty; |
||||||
|
} |
@ -0,0 +1,111 @@ |
|||||||
|
import * as chalk from "chalk"; |
||||||
|
|
||||||
|
import pretty = require("pino/pretty"); |
||||||
|
|
||||||
|
type Level = "default" | 60 | 50 | 40 | 30 | 20 | 10; |
||||||
|
|
||||||
|
const levels = { |
||||||
|
default: "USERLVL", |
||||||
|
60: "FATAL", |
||||||
|
50: "ERROR", |
||||||
|
40: "WARN", |
||||||
|
30: "INFO", |
||||||
|
20: "DEBUG", |
||||||
|
10: "TRACE", |
||||||
|
}; |
||||||
|
|
||||||
|
const levelColors = { |
||||||
|
default: chalk.white.underline, |
||||||
|
60: chalk.bgRed.underline, |
||||||
|
50: chalk.red.underline, |
||||||
|
40: chalk.yellow.underline, |
||||||
|
30: chalk.green.underline, |
||||||
|
20: chalk.blue.underline, |
||||||
|
10: chalk.grey.underline, |
||||||
|
}; |
||||||
|
|
||||||
|
const standardKeys = ["pid", "hostname", "name", "level", "time", "v", "source", "msg"]; |
||||||
|
|
||||||
|
function formatter(value: any) { |
||||||
|
let line = formatTime(value, " "); |
||||||
|
line += formatSource(value); |
||||||
|
line += asColoredLevel(value); |
||||||
|
|
||||||
|
// line += " (";
|
||||||
|
// if (value.name) {
|
||||||
|
// line += value.name + "/";
|
||||||
|
// }
|
||||||
|
// line += value.pid + " on " + value.hostname + ")";
|
||||||
|
|
||||||
|
line += ": "; |
||||||
|
if (value.msg) { |
||||||
|
line += chalk.cyan(value.msg); |
||||||
|
} |
||||||
|
line += "\n"; |
||||||
|
if (value.type === "Error") { |
||||||
|
line += " " + withSpaces(value.stack) + "\n"; |
||||||
|
} else { |
||||||
|
line += filter(value); |
||||||
|
} |
||||||
|
return line; |
||||||
|
} |
||||||
|
|
||||||
|
function withSpaces(value: string): string { |
||||||
|
const lines = value.split("\n"); |
||||||
|
for (let i = 1; i < lines.length; i++) { |
||||||
|
lines[i] = " " + lines[i]; |
||||||
|
} |
||||||
|
return lines.join("\n"); |
||||||
|
} |
||||||
|
|
||||||
|
function filter(value: any) { |
||||||
|
const keys = Object.keys(value); |
||||||
|
const filteredKeys = standardKeys; |
||||||
|
let result = ""; |
||||||
|
|
||||||
|
for (const key of keys) { |
||||||
|
if (filteredKeys.indexOf(key) < 0) { |
||||||
|
result += " " + key + ": " + withSpaces(JSON.stringify(value[key], null, 2)) + "\n"; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
function asISODate(time: string) { |
||||||
|
return new Date(time).toISOString(); |
||||||
|
} |
||||||
|
|
||||||
|
function formatTime(value: any, after?: string) { |
||||||
|
after = after || ""; |
||||||
|
try { |
||||||
|
if (!value || !value.time) { |
||||||
|
return ""; |
||||||
|
} else { |
||||||
|
return "[" + asISODate(value.time) + "]" + after; |
||||||
|
} |
||||||
|
} catch (_) { |
||||||
|
return ""; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
function formatSource(value: any) { |
||||||
|
if (value.source) { |
||||||
|
return chalk.magenta("(" + value.source + ") "); |
||||||
|
} else { |
||||||
|
return ""; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
function asColoredLevel(value: any) { |
||||||
|
const level = value.level as Level; |
||||||
|
if (levelColors.hasOwnProperty(level)) { |
||||||
|
return levelColors[level](levels[level]); |
||||||
|
} else { |
||||||
|
return levelColors.default(levels.default); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
process.stdin.pipe(pretty({ |
||||||
|
formatter, |
||||||
|
})).pipe(process.stdout); |
Loading…
Reference in new issue