UNPKG

dgeni

Version:

Flexible JavaScript documentation generator used by both AngularJS and Angular

13 lines (12 loc) 240 B
/** * @dgService log * @kind object * @description * A service for logging what the dgeni is up to */ export function logFactory() { const winston = require('winston'); winston.cli(); winston.level = 'info'; return winston; };