Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 697 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 697 Bytes

architect-logger

This plugin uses winston as a logging backend

Config Format

{
  "packagePath": "./node_modules/architect-logger",
  "exitOnError": false,
  "transports": {
    "console": {
      "colorize": true,
      "level": "verbose"
    },
    "file": {
      "filename": "./logs/errors.log",
      "level": "warn"
    }
  }
}

Usage

Let's use that puppy in our plugin

module.exports = function (options, imports, register) {

  var log = imports.logger;

  logger.info("Hello!");
  logger.warn("Uh oh! There's an error coming...");
  logger.error("We're going down");

};

TODO

  • Support for multiple categories