diff --git a/src/main/utils/http.ts b/src/main/utils/http.ts index f4dd9c5..40a1962 100644 --- a/src/main/utils/http.ts +++ b/src/main/utils/http.ts @@ -54,6 +54,6 @@ export async function simpleGet(url: string, options: RequestOptions = {}) { res.once("end", () => resolve(Buffer.concat(chunks))); }); } catch (e) { - console.log(e); + console.error(e); } }