richard
richard

Reputation: 12498

Chrome console errors - how can I see the time the error occured?

I want to know when the errors occurred (it's a long-running processs and it may have occurred yesterday or today and that information will help me debug what's going on).

Can I see the time the errors occurred?

Upvotes: 2

Views: 729

Answers (1)

Konrad Dzwinel
Konrad Dzwinel

Reputation: 37903

Go to the DevTools Settings and enable "Show timestamps" in the "Console" section. This setting will show dates for all, old and new, console messages.


DevTools settings with "Show timestamps" checked


error message in the DevTools Console with a timestamp

Upvotes: 4

Related Questions