fox-send/server/log.js

13 lines
279 B
JavaScript
Raw Normal View History

2017-06-08 20:45:28 +00:00
const conf = require('./config.js');
2017-06-09 17:44:12 +00:00
const notLocalHost = conf.notLocalHost;
2017-06-08 20:45:28 +00:00
2017-06-09 17:44:12 +00:00
const mozlog = require('mozlog')({
2017-06-08 20:45:28 +00:00
app: 'FirefoxFileshare',
level: notLocalHost ? 'INFO' : 'verbose',
fmt: notLocalHost ? 'heka' : 'pretty',
debug: !notLocalHost
2017-06-09 17:44:12 +00:00
});
2017-06-08 20:45:28 +00:00
2017-06-09 17:44:12 +00:00
module.exports = mozlog;