mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-08 20:22:45 +01:00
13 lines
279 B
JavaScript
13 lines
279 B
JavaScript
const conf = require('./config');
|
|
|
|
const isProduction = conf.env === 'production';
|
|
|
|
const mozlog = require('mozlog')({
|
|
app: 'FirefoxSend',
|
|
level: isProduction ? 'INFO' : 'verbose',
|
|
fmt: isProduction ? 'heka' : 'pretty',
|
|
debug: !isProduction
|
|
});
|
|
|
|
module.exports = mozlog;
|