Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@gasket/plugin-logger
Advanced tools
This plugin adds a logger to your Gasket application and introduces lifecycles for custom logger implementations. This plugin is included by default in all Gasket applications.
At this time, there is only one plugin which implements a
custom logger: @gasket/plugin-winston
.
This plugin is only used by presets for create-gasket-app
and is not installed for apps.
Get the logger instance using the Actions API.
const logger = gasket.actions.getLogger();
To implement a custom logger, hook the createLogger
lifecycle.
Your hook must be synchronous and return an object with this shape:
type Logger = {
[level: string]: (...args: Array<any>) => void,
child: (metadata: Object) => Logger,
close?: () => Promise<void> // Optional
}
The level
keys are the log levels that your logger supports. The values are
functions that accept any number of arguments and write them to the log. Your
logger must support, at minimum, the following levels:
debug
error
info
warn
The child
function is used to create a new logger with additional metadata.
The metadata
argument is set of properties that will be included in every log
entry. The child
function must return a new logger with the same shape as the
parent logger.
The close
function, if supplied, is called when the application is shutting
down and should be used to close any open resources.
If you are contributing to this plugin, use the following to run the tests:
npm test
FAQs
Gasket plugin for logging
The npm package @gasket/plugin-logger receives a total of 110 weekly downloads. As such, @gasket/plugin-logger popularity was classified as not popular.
We found that @gasket/plugin-logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.