npm.io
2.1.1 • Published 7 years ago

@gasbuddy/configured-winston

Licence
MIT
Version
2.1.1
Deps
1
Size
43 kB
Vulns
0
Weekly
0

configured-winston

Greenkeeper badge

wercker status Coverage Status

A wrapper which hooks winston transports up via config. The config entry should have a "transports" property which has a list of transports to configure. It is specified via an object rather than array to allow enable/disable and multi-config file overlays (features of hydration and confit) to work more cleanly across environments.

Sample Configuration

  "logger": {
    "module": "@gasbuddy/configured-winston",
    "transports": {
      "file": {
        "name": "File",
        "filename": "/var/log/foobar.error.log",
        "config": {
          "level": "error"
        }
      }
    },
    "console": false
  }