@arcjet/logger
v1.0.0-alpha.32
Published
Arcjet lightweight logger which mirrors the Pino structured logger interface
Downloads
17,188
Readme
@arcjet/logger
Arcjet lightweight logger which mirrors the Pino structured logger interface.
Installation
npm install -S @arcjet/logger
Example
import logger from "@arcjet/logger";
logger.debug("only printed in debug mode");
logger.log("only printed in log mode");
logger.warn("printed in default mode");
// printf-style printing
logger.error("printed always: %s", new Error("oops"));
Log levels
Log levels can be changed by setting the ARCJET_LOG_LEVEL
environment variable
to one of: "DEBUG"
, "LOG"
, "WARN"
, or "ERROR"
.
License
Licensed under the Apache License, Version 2.0.