UNPKG

winston-format-debug

Version:
136 lines (94 loc) 5.12 kB
# winston-format-debug [![NPM version](https://badge.fury.io/js/winston-format-debug.svg)](https://npmjs.org/package/winston-format-debug) ![Build Status](https://github.com/jwalton/winston-format-debug/workflows/GitHub%20CI/badge.svg) [![Coverage Status](https://coveralls.io/repos/jwalton/winston-format-debug/badge.svg)](https://coveralls.io/r/jwalton/winston-format-debug) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![Greenkeeper badge](https://badges.greenkeeper.io/jwalton/winston-format-debug.svg)](https://greenkeeper.io/) ## What is it? This is a format for console logging for [winston > 3.x.x](https://github.com/winstonjs/winston). It's based loosely on [bunyan-debug-stream](https://github.com/jwalton/bunyan-debug-stream). ## Usage ```js import winston from 'winston'; import debugFormat from 'winston-format-debug'; const logger = winston.createLogger({ levels: winston.config.syslog.levels, level: 'info', transports: [ new winston.transports.Console({ format: winston.format.combine( debugFormat({ levels: winston.config.syslog.levels, colors: winston.config.syslog.colors, }) ), }), ], }); ``` ## Options ### processName The name of the process. If not specified, `winston-format-debugger` will attempt to figure this out from `process.argv`. If specified as an empty string, the process name will be hidden in the output. ### levels A hash where keys are level names, and values are level numbers. This is the same `levels` you pass to `winston.createLogger({levels})`. If not specified, defaults to `winston.config.npm.levels`. ### colors Colors to use to colorize things. You can also set `colors` to `false` to disable all colors. If not specified, defaults to `winston.config.npm.colors`. You can specify any color from [the Winston colors](https://github.com/winstonjs/winston#using-custom-logging-levels), or any of the standard colors or modifiers from [chalk](https://github.com/chalk/chalk), as well as hex codes. ### showPID Defaults to true. If false, the PID will not be shown in the output. ### skip By default, `winston-format-debug` will print all values in your Winston log as JSON objects (except Errors, which will be transformed into stack traces). If there are specific values you do not want to print, you can skip them with `skip`. This can be either an array of property names, or a `fn(key, value): boolean` that returns true if a property name should be skipped. For example, the object `{message: "Hello World", foo: {bar: 7}}` would normally be printed as: ```txt Nov 3 14:42:12 test[69138] INFO: Hello world! foo: {bar: 7} ``` If you pass `skip: ["foo"]`, then the "foo" field would not be printed. Note that 'level', 'message', '@timestamp', and 'name' are always skipped. ### colorizePrefix, colorizeMessage, colorizeValues `winston-format-debug` logs a message that looks something like this: ```log Jun 28 20:55:16 process[7998] INFO: Hello world otherValue: "hello" ``` `colorizePrefix` controls whether or not the date, process name, and PID are colorized (defaults to false). `colorizeMessage` controls the text of the message (defaults to true). `colorizeValues` controls wether non-message values are colorized (defaults to true). These options are all ignored unless the `colors` option is passed in. ### basePath This is the root of your project. This is used to strip prefixes from filenames, in stack traces, and to decide which files are part of "your code" and which are not. ### indent Set the indent size. Defaults to 4. ### maxExceptionLines The maximum number of lines to show in a stack trace. If not specified, defaults to unlimited. ### terminalWidth The maximum width to print for values (other than `message`). Any "extra values" in the info object from winston will be printed, but each (aside from errors) are truncated to a single line. If specified, this is the width to truncate to. In a TTY, defaults to `process.stdout.columns`. Otherwise, defaults to 80. ## Special fields - level, message - Defined by winston. - @timestamp - If present, this will be ignored. - name - Assumed to be the logger name. This will be printed along with the process name. ## Prefixers and Stringifiers [bunyan-debug-stream](https://github.com/jwalton/bunyan-debug-stream) has support for "prefixers" and "stringifiers" which can be used to customize the log output. These are not required in Winston, though, as you can easily write a `format` which edits your data. For example, if you had an `accountName` field, you could do the same as a prefixer with: ```js import winston from 'winston'; const accountPrefixer = winston.format((info) => { info.message = `[${info.account}] ${info.message}`; return info; }); const logger = winston.createLogger({ transports: [ new winston.transports.Console({ format: winston.format.combine(accountPrefixer(), debugFormat({ skip: ['account'] })), }), ], }); ```