Skip to content

Commit

Permalink
Revert "disable fetch log"
Browse files Browse the repository at this point in the history
This reverts commit 12a5a62.
  • Loading branch information
nleush committed Jun 25, 2024
1 parent 12a5a62 commit a1e5400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function doFetch(fetch_func, h1_fetch_func, options) {
// Remove hash part of url.
uri = uri.replace(/#.*/gi, '');

// console.log('- fetch url', uri);
console.log('- fetch url', uri);

const abortController = new HostAbortController(uri);

Expand Down Expand Up @@ -120,7 +120,7 @@ export function fetchData(options) {
const fetch_options = Object.assign({}, options);
const uri = options.qs ? createUrl(options.uri, options.qs) : options.uri;

// console.log('- fetch data url', uri);
console.log('- fetch data url', uri);

const abortController = new HostAbortController(uri);

Expand Down

0 comments on commit a1e5400

Please sign in to comment.