9 Different Use Cases of console.log

9 Different Use Cases of console.log

Enhanced debugging with the console API
Ferenc Almasi • Last updated 2021 November 11 • Read time 5 min read
Get your weekly dose of webtips
  • twitter
  • facebook
JavaScript

Every one of us has used console.log for debugging more than we care to admit. I use it multiple times a day to verify my changes but mostly do this with only console.log. Yet the console API provides way more functionality than that — more functionality than most of us are aware of.

We can use it not just for logging, but also to debug performance issues or to validate changes with assertions. This article is a collection of nine different use cases of the console API that can help you with debugging on top of console.log.

Let’s start at the very beginning with the simple things we all know: log levels.


1. Log Levels

We all know and use console.log, but there are some other levels out there. Let’s go in order of severity, starting from debug. The debug method outputs a message to the console at the debug log level.

Console.debug output in the console

Looking at the GIF above, you can already see the different available log levels. By default, Verbose is checked off — hence you won’t see a debug log until it’s checked. The same is true for the other three.

The next level, which is info, is responsible for handling console.info. If you uncheck info, both console.info and console.log will be hidden. The two are equivalent. Warnings and errors, however, will be styled differently.

The different styles of different console log levels

As you can see, there’s no visual difference between console.log and console.info. Both can be used for logging out general information.

You should use warn when things don’t go right in your application, but it can still recover automatically and doesn’t affect operation. While error should be used in case it affects user flow and can cause your application to crash and come to a halt.


2. Dir and DirXml

If you need further debugging capabilities, dir and dirxml might be what you’re looking for.

Both are used for displaying an interactive list of an object. Let’s see some examples. Say you want to log out the properties of a DOM element. Clearly, if you use console.log, you get the HTML representation. This is the case when you use console.dirxml as well. As the name suggests, it displays the XML or HTML representation of the object you specify.

Different output of log dir and dirxml

But not with console.dir. As you can see from the example above, in this case, log and dirxml are identical. But console.dir logs out the body in a JavaScript object representation.

What are some other cases? There are certain objects which log stringifies. The best example would be a regex:

Regex object logged out with log and dir

While log only outputs a string representation of the expression, with dir we get all the available properties on the object.

Looking to improve your skills? Check out our interactive course to master JavaScript from start to finish.
Master JavaScriptinfo Remove ads

3. Formatting

If the previous examples still don’t fulfill your needs, there are further formatting options you can go with. One of them is console.table. It display the passed data — which can be either an array or an object â€” in a table.

outputting array inside a table
outputting array of objects inside a table
Tables can also be sorted

And if you want your messages to really stand out because you can’t find the one you’re looking for in the sea of console messages, then you can specify CSS styles as the second argument of console.log.

The first argument, which is the message you want to log out, must contain %c. Everything that comes after this special placeholder will get the styles.

applying css styles to logs

4. Grouping

Speaking of getting lost among the logs, you can also group messages to save some space and make your console more readable. Take a look at the following example and its result:

Using groups and nested groups

In case it makes thing hard to read for you and your console becomes cluttered, we can also use the groupCollapsed method to output the group as collapsed by default:

using groupCollapsed, collapses the group by default

5. Assertions

Now that we have everything logged out and we managed to understand how our implementation works, it’s time to also test them to make sure they work as intended.

This is what console.assert is for. It expects an assertion, and if it’s evaluated to false, it prints out the stack trace to the console.

testing code with console.assertion inside the console

As you can see from the example above, we have two elements in the array that aren’t symbols. This is caught by the assertion. Anything that passes won’t print to the console — except the failed assertions.


6. Debugging

We used assertions and see how everything failed. We need a way to debug things. For debugging purposes we can use console.trace. It is used for displaying a stack trace:

Putting out stack trace with console.trace

Also, if you’re suspecting you have memory issues, such as memory leak, you can print out the memory usage using console.memory.

Memory information logged out by console.memory
Looking to improve your skills? Check out our interactive course to master JavaScript from start to finish.
Master JavaScriptinfo Remove ads

7. Monitoring Performance

We’ve successfully debugged the issue, and now everything seems to work just fine — except the response time is really long.

So you want to measure performance. You think it’s because of a for loop you implemented earlier to populate the page with chickens. To measure performance, we can use console.time.

Console.time writes out the time it takes for the operation to run

By calling console.time with a name and then calling console.timeEnd with the same name and the operation in between, we can measure the time it takes for the loop to run.

If you’d like to log out the time every now and then at certain intervals, you can also use timeLog.

Logging out time at certain interval with timeLog

Calling timeLog will log out the current value of the time.


8. Countdown

And now we’re reaching the end of this list, so let’s count down — or rather up â€” before wrapping everything up.

Counting using console.count

count expects a label as a parameter.

This label will get printed out alongside the number of times it’s been called. This is useful if you want to know how many times a function has been called or a component has been rendered. If you’d like to reset the counter and start over again, you can use countReset.

Resetting the counter with countReset

9. Beginning With a New Page

Finally, to let go of everything we did so far and start with a blank slate, let’s use console.clear to get rid of the mess we’ve made.

Clearing the console with console.log
Clearing the console with console.log

Hope you have learned new things. If you’ve reached this far, thank you for your time. Now it’s time to have a break and play with a real console. 🕹️

  • twitter
  • facebook
JavaScript
Did you find this page helpful?
đź“š More Webtips
Frontend Course Dashboard
Master the Art of Frontend
  • check Access 100+ interactive lessons
  • check Unlimited access to hundreds of tutorials
  • check Prepare for technical interviews
Become a Pro

Courses

Recommended

This site uses cookies We use cookies to understand visitors and create a better experience for you. By clicking on "Accept", you accept its use. To find out more, please see our privacy policy.