From be70b7ba2cb3fa947f2d30b15a53997beafe1c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Wendt?= Date: Sat, 19 Oct 2024 17:38:24 +0200 Subject: [PATCH] feat: show only paths of URLs --- lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 78ad4e8..fb7b76f 100644 --- a/lib/client.js +++ b/lib/client.js @@ -96,7 +96,7 @@ export class GitHubClient { if (responseHeadersCallback) { responseHeadersCallback(response.headers); } - if (this.verbose) { console.debug(" ", response.status, response.statusText, url); } + if (this.verbose) { console.debug(" ", response.status, response.statusText, url.slice('https://api.github.com'.length)); } if (response.status == 204) { return null; }