Hrishikesh
Hrishikesh

Reputation: 380

Is there any better way to understand angular error/exception messages in AngularJS?

During development we often encounter errors/exceptions in developer console. But for me its not easy recognize the error properly (:P ). Is there any better way to get more information about error/exception like due to which code, line number, which line etc.

Thanks!

Upvotes: 3

Views: 731

Answers (1)

wvdz
wvdz

Reputation: 16651

Use Chrome for debugging. In Chrome the Angular messages are displayed as a nice stracktrace with a clickable link to the error description.

You can also use the non-minified version of angular to get more descriptive error messages.

Upvotes: 3

Related Questions