Tweak get-info for JSON fail

This commit is contained in:
calzoneman 2013-03-20 16:55:58 -05:00
parent d1fee84200
commit 090eaa37c2
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ function getJSON(options, callback) {
var data = JSON.parse(buffer); var data = JSON.parse(buffer);
} }
catch(e) { catch(e) {
console.log("JSON fail"); console.log("JSON fail: " + options);
} }
callback(res.statusCode, data); callback(res.statusCode, data);
}); });