devenv: elastic: remove unnecessary console logging (#65160)

This commit is contained in:
Gábor Farkas
2023-03-22 11:50:45 +01:00
committed by GitHub
parent 67daa90651
commit 6559971c02
@@ -53,7 +53,6 @@ async function elasticSendLogItem(timestamp, item) {
const url = new URL(ELASTIC_BASE_URL);
url.pathname = `/logs-${timestampText}/_doc`;
await jsonRequest(item, 'POST', url, 201);
console.log(`posted to ${url.toString()}`);
}
async function elasticSetupIndexTemplate() {