@livy/console-handler
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

@livy/console-handler

This Livy handler writes log records to the terminal.


Synchronous logger support: yes

Runtime: Node.js and browsers (although in browsers, you probably want @livy/browser-console-handler)


Basic Example

const { ConsoleHandler } = require('@livy/console-handler')

const handler = new ConsoleHandler()

Installation

Install it via npm:

npm install @livy/console-handler

Options

An object of options can be passed to the handler constructor as the first argument.

The following options are available:

bubble

Type: boolean

Default: true

Description: Controls whether records handled by this handler should bubble up to other handlers.

See also: Bubbling

console

Type: Console

Default: the global console object

Description: The console object to use for logging

formatter

Type: FormatterInterface

Default: new ConsoleFormatter()

Description: The formatter to use.

level

Type: LogLevel

Default: 'debug'

Description: Controls which log records should be handled based on their log level.

Public API

bubble

Controls whether records handled by this handler should bubble up to other handlers. Initially set through the bubble option.

See also: Bubbling

defaultFormatter (read-only)

The formatter used by this handler if no formatter option is set.

formatter

This handler supports formatters by implementing the FormattableHandlerInterface.

level

The minimum log level of a log record to be considered by this handler. Initially set through the level option.

processors

This handler supports processors by implementing the ProcessableHandlerInterface.

reset()

This handler implements the ResettableInterface. Resetting it resets all attached processors.

You usually don't want to call this method manually on an individual handler. Consider calling it on the logger instead.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.3
    117
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.3
    117
  • 1.0.2
    0
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i @livy/console-handler

Weekly Downloads

117

Version

1.0.3

License

MIT

Unpacked Size

10.9 kB

Total Files

6

Last publish

Collaborators

  • loilo