config.js
845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* config.js
* @author: feng.chen<feng.chen@yoho.cn>
* @date: 2017/10/18
*/
'use strict';
const config = {
app: 'yoho-bi',
port: 8887,
loggers: {
file: {
name: 'file',
level: 'info',
filename: '/Data/logs/yoho-bi-dashboard/info/info.log',
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
timestamp() {
return new Date().toString();
}
},
error: {
name: 'error',
level: 'error',
filename: '/Data/logs/yoho-bi-dashboard/error/error.log',
handleExceptions: true,
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
timestamp() {
return new Date().toString();
}
},
console: {
level: 'info',
colorize: 'all',
prettyPrint: false
}
},
};
module.exports = config;