🗑 Remove debug message

This commit is contained in:
C-3PO 2018-07-04 19:57:55 +02:00
parent c821327a6e
commit a3bff814ef
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
3 changed files with 6 additions and 5 deletions

View file

@ -13,8 +13,9 @@ export default function getUrlContents({ host, path }: {host: string, path: stri
//In case of connection errors, exit early
request.on('error', (error) => {
request.abort();
return reject(error);
reject(error);
});
request.end();
});
}