Adding extra debug to the support library.

master
Alexander Blair 7 years ago
parent c0c9c0ae1c
commit cef180b02d

@ -90,6 +90,7 @@ function jsonRequest(host, port, data, callback, path) {
if (err) {
return callback(err);
}
debug("JSON result: " + JSON.stringify(body));
return callback(body);
});
});
@ -98,6 +99,7 @@ function jsonRequest(host, port, data, callback, path) {
if (err) {
return callback(err);
}
debug("JSON result: " + JSON.stringify(body));
return callback(body);
});
}

Loading…
Cancel
Save