Winston Transport Browser Server
Winston A logger for just about everything.
Installation
Install the required packages:
sh
npm i loglayer @loglayer/transport-winston winstonsh
pnpm add loglayer @loglayer/transport-winston winstonsh
yarn add loglayer @loglayer/transport-winston winstonSetup
typescript
import winston from 'winston'
import { LogLayer } from 'loglayer'
import { WinstonTransport } from "@loglayer/transport-winston"
const w = winston.createLogger({})
const log = new LogLayer({
transport: new WinstonTransport({
logger: w
})
})Configuration Options
Required Parameters
None - all parameters are optional.
Optional Parameters
| Name | Type | Default | Description |
|---|---|---|---|
level | "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "trace" | Minimum log level to process. Messages with a lower priority level will be ignored |
enabled | boolean | true | If false, the transport will not send any logs to the logger |
consoleDebug | boolean | false | If true, the transport will also log messages to the console for debugging |
id | string | - | A unique identifier for the transport |
Log Level Mapping
| LogLayer | Winston |
|---|---|
| trace | silly |
| debug | debug |
| info | info |
| warn | warn |
| error | error |
| fatal | error |
Changelog
View the changelog here.
