зеркало из https://github.com/mozilla/CSOL-site.git
Add basic log info statement for API requests
This commit is contained in:
Родитель
3854da7788
Коммит
23b58c785a
4
api.js
4
api.js
|
@ -86,6 +86,10 @@ function remote (method, path, callback) {
|
|||
// TODO - might want to cache this at some point
|
||||
var endpointUrl = url.format(_.extend(this.origin, { pathname: path }));
|
||||
request[method](endpointUrl, function(err, response, body) {
|
||||
|
||||
logger.log('info', 'API request: "%s %s" %s',
|
||||
method.toUpperCase(), endpointUrl, response ? response.statusCode : "Error", err);
|
||||
|
||||
if (err)
|
||||
return callback(new errors.Unknown(err));
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче