@alexd1971/logger

Logger for log-server (https://github.com/alexd1971/log-server)


Keywords
log, client, logger
License
Unlicense
Install
npm install @alexd1971/logger@1.0.2

Documentation

Logger

Description

Simple client for log-server based on winston project

Logger uses HTTP as transport and requires running log-server

Installation

$ npm install @alexd1971/logger --save

Usage

var options = {
    host: 'localhost', // optional (default: localhost)
    port: 4114 //optional (default: 4114)    
};

// Options can be omitted. If so defaults will be used
var logger = require('@alexd1971/logger').create(options);

logger.info("Super important log message");