async debug

This commit is contained in:
2018-12-12 22:08:09 -06:00
parent f94613aa1d
commit 62a114ad1f

2
bot.js
View File

@@ -230,7 +230,7 @@ async function loadJson(url, auth) {
if (auth) {
response = await fetch(url, auth);
sendToBotTestingChannel('imgur url:' + url);
sendToBotTestingChannel('imgur auth:' + auth.toString());
sendToBotTestingChannel('imgur auth:' + JSON.stringify(auth));
} else {
response = await fetch(url);
}