Skip to content

Instantly share code, notes, and snippets.

@emrahdk
Last active December 12, 2017 07:30
Show Gist options
  • Save emrahdk/230077c781fb962b66a6061c452927f1 to your computer and use it in GitHub Desktop.
Save emrahdk/230077c781fb962b66a6061c452927f1 to your computer and use it in GitHub Desktop.
Log Fetch requests
// fetch logger
global._fetch = fetch;
global.fetch = function(uri, options, ...args) {
return global._fetch(uri, options, ...args).then((response) => {
console.info('🚀', { request: { uri, options, ...args }, response });
return response;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment