Get "PHP 8 in a Nuthshell" (Now comes with PHP 8.3)
Amit Merchant

Amit Merchant

A blog on PHP, JavaScript, and more

Log messages directly into the console using Logpoints

Have you ever been in a situation where you’re testing an application but you don’t have access to the source code but you still want to debug some part of the code by console logging the variables?

This can be a situation where you’re checking out a production version of the application but you don’t have access to the source code of the same. For instance, let’s say, you’re checking this application notepad.js.org and it has this JavaScript file at js/app.js which drives all of the JS related stuff of the application. You can access this file by going to notepad.js.org and pressing Cmd/Ctrl + P and searching “app.js” into it.

In this specific file, there’s a logic which retrieves the bodyClass of the app (which is used to switch between Dark/Light mode) based on the toggle.

Now, all you want to do is log this variable to console. How would you do it without access to the source code? Well, in this case, DevTool’s Logpoints can come to your rescue.

Logpoints

Logpoints can be used to log messages to the Console without cluttering up your code with console.log() calls and also for the aformentioned reason.

Let’s see how it works.

You go to the file in the console sources as I mentioned previously, i.e pressing Cmd/Ctrl + P and searching app.js. Now..

  • Right-click the line number where you want to add the Logpoint. In our case, we want to do it just after the line where it’s been assigned a value.

  • Select Add logpoint. The Breakpoint Editor pops up where you need to select the “Add logpoint…” and enter the variable that you want to log like so.

  • Press Enter or click outside of the Breakpoint Editor to save. The orange badge on top of the line number represents the Logpoint.

  • Now, reload the app and the next time that the line executes, in our case on dark mode toggle, DevTools logs the result of the Logpoint expression to the Console.

As you can see upon switching to the Dark mode, we have the console message logged which we added through the Logpoint.

Pretty handy, right?

So, the next time when you want to do some console logging, don’t ruin your code with too many console.logs. Use Logpoints instead!

Like this article? Consider leaving a

Tip

👋 Hi there! I'm Amit. I write articles about all things web development. You can become a sponsor on my blog to help me continue my writing journey and get your brand in front of thousands of eyes.

Comments?