@dmikey/fastify-loggly
v1.0.1
Published
send your fastify logs to loggly with ease. A thin fastify compatible wrapper around `pino` that impliments logging with `node-loggly-bulk`.
Downloads
12
Readme
fastify-loggly
send your fastify logs to loggly with ease. A thin fastify compatible wrapper around pino
that impliments logging with node-loggly-bulk
.
install
yarn add @dmikey/fastify-loggly
use
- Fastify Logger Options check Fastify Docs
- Loggly Options check node-loggly-bulk
import { Logger } from "@dmikey/fastify-loggly";
const fastify = Fastify({
logger: Logger(FastifyLoggerOptions, LogglyOptions),
});
// use the logger
fastify.log("info", { some: "foo" });