1.0.0-alpha.28 • Published 10 months ago

@arcjet/logger v1.0.0-alpha.28

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

@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.