Get the full call stack trace of $http calls
Let's say someone wrote a method like this in a file called app.js trying to peform an XHR request angainst a non existing url: app.controller('MainCtrl', function($scope,$http) { $scope.send = function() { $http.get('http://run.plnkr.co/thisIs404'); }; }); I can see an error regarding URL http://run.plnkr.co/thisis404 in console and network panel : To debug this I want to find quickly where this XHR call was made in sources (ie find the app.js file) : So I enable in chrome dev tools : async debug in call stack debug any XHR Debugger actually stops on XHR request, but the call stack only