You might have enabled the console logging feature in Atatus initialization. If you do so, we will capture all console activities by wrapping browser console functions. Due to side-effect of our wrapping, you could not see the the original file & line number of the actual error in console. There are two ways, you could overcome this:

1. Disable console capturing

You can disable the console capturing in Atatus, and you shall see the original file and line number in the browser developer console. You can disable it as follows

copy
icon/buttons/copy
atatus.config('YOUR_API_KEY', {
   console: false
}).install();

2. Blackboxing

If you’re developing in Chrome, you can exclude our script by Blackboxing it.