generator-sails-rest-api
Version:
Yeoman generator that provides already configured and optimized Sails REST API with bundle of predefined features
22 lines (19 loc) • 509 B
JavaScript
;
/**
* Built-in Log Configuration
* (sails.config.log)
*
* Configure the log level for your app, as well as the transport
* (Underneath the covers, Sails uses Winston for logging, which
* allows for some pretty neat custom transports/adapters for log messages)
*/
module.exports = {
log: {
/**
* The order of precedence for log levels from lowest to highest is:
* silly, verbose, info, debug, warn, error, silent
* @type {String}
*/
level: 'verbose'
}
};