1.0.4 • Published 6 years ago

winston-azure-function v1.0.4

Weekly downloads
5
License
ISC
Repository
github
Last release
6 years ago

winston-azure-function

Winston transport for azure function using winston

Installation

  $ npm install winston
  $ npm install winston-azure-function

Usage

Here is the use of azure function context.

  var winston = require('winston');
  require('winston-azure-table-storage');
  
  winston.configure({
      transports: [
          new (winston.transports.AzureFunction)({ context: azContext })
      ]
  });
  
  winston.warn('Hello toto!');