1
1

fix some debugs

Dieser Commit ist enthalten in:
AJ ONeal 2015-12-04 08:46:11 +00:00
Ursprung 0ffe4e2e5c
Commit 37e608517e
2 geänderte Dateien mit 4 neuen und 5 gelöschten Zeilen

Datei anzeigen

@ -97,12 +97,10 @@ module.exports.inject = function (app) {
}); });
} }
/*
app.use('/', function (req, res, next) { app.use('/', function (req, res, next) {
console.log('[DEBUG CORS]', req.method, req.hostname, req.url); //console.log('[DEBUG CORS]', req.method, req.hostname, req.url);
cors(req, res, next); cors(req, res, next);
}); });
*/
app.use('/', getToken); app.use('/', getToken);
}; };

Datei anzeigen

@ -158,12 +158,13 @@ function getApi(pkgConf, pkgDeps, packagedApi) {
require('./oauth3-auth').inject(packagedApi._api, pkgConf, pkgDeps); require('./oauth3-auth').inject(packagedApi._api, pkgConf, pkgDeps);
// DEBUG // DEBUG
//
/* /*
packagedApi._api.use('/', function (req, res, next) { packagedApi._api.use('/', function (req, res, next) {
console.log('[DEBUG pkgsrv]', req.method, req.hostname, req.url); console.log('[DEBUG pkgApiApp]', req.method, req.hostname, req.url);
next(); next();
}); });
*/ //*/
// TODO fix backwards compat // TODO fix backwards compat