made log level configurable in dev

This commit is contained in:
Danny Coates 2013-12-12 10:02:33 -08:00
Родитель ce7c9520d8
Коммит 81cec9a1e1
3 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -7,10 +7,9 @@ var fs = require('fs')
var config = require('../config').root()
function main() {
var isProduction = config.env === 'production'
var log = require('../log')(isProduction ? config.log.level : 'trace')
var log = require('../log')(config.log.level)
if (!isProduction) {
if (config.env !== 'production') {
log.info(config, "starting config")
}
@ -20,7 +19,7 @@ function main() {
memoryMonitor.on(
'mem',
function (usage) {
log.trace(
log.info(
{
op: 'stat',
stat: 'mem',

Просмотреть файл

@ -7,5 +7,8 @@
},
"toobusy": {
"maxLag": 0
},
"log": {
"level": "trace"
}
}

Просмотреть файл

@ -9,7 +9,7 @@
"scripts": {
"test": "tap ./test/run",
"start": "scripts/start-local.sh",
"test-mysql": "DB_BACKEND=mysql tap ./test/run",
"test-mysql": "DB_BACKEND=mysql npm test",
"test-all": "npm test && npm run test-mysql"
},
"repository": {