mirror of
https://github.com/fleetdm/fleet
synced 2026-05-03 03:17:21 +00:00
Closes: https://github.com/fleetdm/confidential/issues/4057 Changes: - Added the contents of the fleet-vulnerability-dashboard repo to ee/vulnerability-dashboard - Added a github workflow to deploy the vulnerability dashboard on Heroku - Added a github workflow to test changes to the vulnerability-dashboard - Updated the website's custom configuration to enable auto-approvals/review requests to files in the ee/vulnerability-dashboard folder
29 lines
1.3 KiB
JavaScript
29 lines
1.3 KiB
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)
|
|
*
|
|
* For more information on the Sails logger, check out:
|
|
* https://sailsjs.com/docs/concepts/logging
|
|
*/
|
|
|
|
module.exports.log = {
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* Valid `level` configs: i.e. the minimum log level to capture with *
|
|
* sails.log.*() *
|
|
* *
|
|
* The order of precedence for log levels from lowest to highest is: *
|
|
* silly, verbose, info, debug, warn, error *
|
|
* *
|
|
* You may also set the level to "silent" to suppress all logs. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
// level: 'info'
|
|
|
|
};
|