do not log /test calls
This commit is contained in:
Родитель
a4e486ca08
Коммит
b2f717f5d6
4
app.js
4
app.js
|
@ -75,7 +75,7 @@ app.configure('production', function(){
|
|||
|
||||
app.configure(function(){
|
||||
this.set("view engine", "jade");
|
||||
this.use(express.logger('dev'));
|
||||
|
||||
this.use('/test', function (req, res) {
|
||||
var ping_check = setTimeout(function () {
|
||||
winston.error('cant connect to the database (/test mongo ping timedout)');
|
||||
|
@ -96,6 +96,8 @@ app.configure(function(){
|
|||
});
|
||||
});
|
||||
|
||||
this.use(express.logger('dev'));
|
||||
|
||||
this.use(function (req, res, next) {
|
||||
res.set({
|
||||
'Access-Control-Allow-Origin': (process.env.NODE_ENV === 'production' ? 'https' : 'http') + '://' + nconf.get('DOMAIN_URL_APP')
|
||||
|
|
Загрузка…
Ссылка в новой задаче