test: reduce log verbosity

This commit is contained in:
fryorcraken.eth 2022-11-15 14:15:29 +11:00
parent 584fe29b39
commit 862a33f239
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 1 additions and 1 deletions

View File

@ -407,7 +407,7 @@ export class Nwaku {
headers: new Headers({ "Content-Type": "application/json" }),
});
const json = await res.json();
log(`RPC Response: `, res, JSON.stringify(json));
log(`RPC Response: `, JSON.stringify(json));
return json.result;
}