move console.timeEnd to after the logs

This commit is contained in:
Toshit Chawda 2024-10-29 21:17:01 -07:00
parent d0ef03e029
commit 7f3d122108
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D

View file

@ -294,9 +294,9 @@ import initEpoxy, { EpoxyClient, EpoxyClientOptions, EpoxyHandlers, info as epox
} else {
console.time();
let resp = await epoxy_client.fetch(test_url);
console.timeEnd();
console.log(resp, resp.rawHeaders);
log(await resp.text());
console.timeEnd();
}
log("done");
})();