Node logger
npm install @pixeloven-core/logger> Pixel Oven core logger
See our website PixelOven for more information or our issues board to report issues associated with this package.
Using npm:
``sh`
npm install --save @pixeloven/node-logger
or using yarn:
`sh`
yarn add @pixeloven/node-logger
> Note this package should only be used for node based applications. Using in a client setting may have unintended consequences.
The primary function of this module is to act as a CLI logger. This logger consists of three log levels.
1. info - used for standard information and prints normally.warn
2. - used for warnings and highlights text in yellow.error
3. - Used for errors and highlights text in red.
`javascript
import { logger } from "@pixeloven-core/logger";
logger.info("Some stuff happened");
logger.warn("But not danger seems to be approaching");
logger.error("Welp I'm out!");
``
Each of these methods will print an appropriate icon to at the beginning of each line if the console supports it.