Skip to content

Commit

Permalink
feat: show only paths of URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
awendt committed Nov 9, 2024
1 parent 24d3d19 commit be70b7b
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 be70b7b

Please sign in to comment.