Prevent Google Chrome Log XMLHttpRequest

google-chrome, javascript, jquery

Solution

The logging entry in chrome's console is a behavior of chrome when any `HTTP request` is handled, not a problem with jQuery or ajax(XMLHttpRequest), even an `<img>` or `<link>` tag could cause this issue.

Give This a try though

Problem

Is it possible to `prevent` Google Chrome from logging `XMLHttpRequests`? I don't mean to `disable` the function on Console, but my code is `not` letting Google Chrome show the `URL` to the user. [Update] I am offering a bounty to find out how to suppress messages like ``` XHR Loaded (controllers.js - 200 OK - 12.728999950923026ms - 103.516KB) ```

Original source

Related problems