Skip to content

Commit

Permalink
Merge pull request #6 from awendt/short-urls
Browse files Browse the repository at this point in the history
feat: show only paths of URLs
  • Loading branch information
awendt authored Nov 9, 2024
2 parents 24d3d19 + be70b7b commit 0ab09a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

Expand Down

0 comments on commit 0ab09a3

Please sign in to comment.