0.0.11 • Published 6 years ago

logger-winston v0.0.11

Weekly downloads
46
License
MIT
Repository
github
Last release
6 years ago

logger-winston

Greenkeeper badge Build Status

Provides a logging helper to work with multiple winston logger instances using different configuration settings for each logger. This is useful in larger applications where you may want group logging output into topics or categories for different parts of the code.

Features

  • A default configuration can be provided which applies to all logger instances unless a specific configuration has been set for a logger topic.
  • Each logger can have multiple sinks defined by winston transports as part of the logger configuration. If you need to setup multiple transports of the same type, e.g., two file transports the transport name can be augmented with a "#name" postfix, e.g. "file#debug", to avoid duplicate key errors in strict mode.

API

init(config)

Initialize logging with the given configuration. As the given configuration will be cached internally the first invocation will take effect, only. Make sure to invoke this function at the very beginning of the program before other topics using logging get loaded.

Kind: global function

ParamTypeDefaultDescription
configObjectThe logging configuration.
config.loggingObjectContains the logging configuration for at least one winston container. A specific container configuration can be provided by defining a configuration for a category matching the topicName. A default configuration can provided by defining a container for the category "default". A container configuration contains at least one transport configuration. Note, you may run into an issue in strict mode, if you need to setup multiple transports of the same type, e.g., two file transports, as the strict mode inhibits duplicate object keys. In this case the transport name can be augmented with a "#name" postfix, e.g. "file#debug".
[config.logging.topicName]ObjectdefaultA specific container for a given topicName can be setup by providing a container configuration where the property name is equal to given topicName. The container configuration must contain at least one winston transport configuration. If the container configuration contains the key "inheritDefault" set to true, the default configuration will be mixed in. This way, it possible to solely define transport properties which shall differ from the default configuration.
config.logging.defaultObjectbuiltinContains the default configuration applicable to loggers without a specific container configuration. The container configuration must contain at least one winston transport configuration. If no default configuration is provided a console transport configuration with winston builtin defaults will be used.

getLogger(topicName) ? Object

Get a winston logger for a given topic name. If the requested logger does not yet exist a new instance will be created internally.

Kind: global function

Returns: Object - The winston logger for the given topic name

ParamTypeDescription
topicNameObjectThe name of the topic, topic or category the returned logger is assigned to. The topicName will be added automatically to the log output, if the configuration does not include the "label" property as part of the applicable winston transport configuration.

Example

// Initialize logging in the main program file using the server configuration.
// You only need to call this once! Modules loaded subsequently, can simply
// obtain a logger using getLogger().
var config = require("./config.json");
var logging = require("logger-winston");
logging.init(config);

// Now you can obtain a logger for the topic "MyApp", for example, and start logging.
// The log output will be augmented with a label for the given topic name, automatically.
// By default, the output will look like a follows:
// info: [MyApp] Hello world!
var logger = logging.getLogger("MyApp");
logger.info("Hello world!");

// You can set up a "default" configuration which applies for all
// logger instances unless you provide specific configuration for
// some topics.
// In the given example the the "default" applies to topic "MyApp" while
// a specific configuration has been set for topic "Server".
var logger2 = logging.getLogger("Server");
logger2.info("Starting Server");

Example Configuration config.json

{
  "logging": {
    "default": {
      "console": {
        "level": "debug",
        "colorize": true,
        "timestamp": true
      }
    },
    "Server": {
      "console": {
        "level": "debug",
        "colorize": false,
        "timestamp": false
      }
    }
  }
}

License

Copyright (c) 2015-2018, Marcus Wittig and contributors. All rights reserved.

MIT License

0.0.11

6 years ago

0.0.10

6 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago