UNPKG

ui5flowdev

Version:

UI5FlowDev enables you to manage and run your UI5 applications on a local server with reverse-proxy support. It also provides you the option to build your applications and deploy them to SAP NetWeaver ABAP.

22 lines (20 loc) 505 B
var winston = require('winston'); winston.emitErrs = true; winston.level = process.env.LOG_LEVEL; var logger = new winston.Logger({ transports: [ new winston.transports.Console({ level: 'silly', handleExceptions: true, json: false, colorize: true }) ], exitOnError: false }); module.exports = logger; module.exports.stream = { write: function(message, encoding){ logger.info(message); } };