AngularJS: Is it possible to get $digest loop initiator?

34 Views Asked by At

I just placed this code in my App run

$rootScope.$watch((...args) => console.log('digest', args));

And it is seems that something calls $digest all the time. Never ending $digest cycle. All is working just fine, but is it ok?

I've checked all my $interval and $timeout usings, and it's seems that it's not the source of problem. Any way to know what called $digest?

0

There are 0 best solutions below