remove uncessary console logs

This commit is contained in:
Fran Jurmanović
2021-05-29 21:34:32 +02:00
parent f0d2e7b06d
commit fdb3eb5a0f

View File

@@ -20,9 +20,8 @@ class HomePageElement extends HTMLElement {
getPong = async () => { getPong = async () => {
try { try {
const response = await this.pingService.getAll(); const response = await this.pingService.getAll();
console.log(response);
} catch (err) { } catch (err) {
console.log(err); throw err;
} }
}; };