Arcjet lightweight logger which mirrors the Pino structured logger interface.
npm install -S @arcjet/logger
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 can be changed by setting the ARCJET_LOG_LEVEL
environment variable
to one of: "DEBUG"
, "LOG"
, "WARN"
, or "ERROR"
.
Licensed under the Apache License, Version 2.0.