Use Logpoints to log messages without cluttering up your code with console.log() statments

InstructorTomasz Łakomy

Share this video with your friends

Send Tweet

Logpoints are one of the features recently released in Chrome 73. They allow you to easily log and debug your code (both on local environment and on production) without cluttering your code with console.log() statements everywhere and without using a debugger which might be an overkill when you simply want to log something.

In this lesson we are going to learn how to create Logpoints in Chrome DevTools to catch a bug in a JavaScript function.