How-to

The Best Way to Debug Your PubNub App

3 min read Stephen Blum on Jul 26, 2023

It's hard to catch bugs. It's even harder to catch them when you're working with multiple clients, servers, and networking between them - like when building with PubNub. Even when you find them, describing the steps to reproduce and opening a support ticket can be its own challenge.

Today, we'll cover the best technique for debugging complex PubNub apps, Dashcam. This guide will help you, and PubNub support, debug your app quickly. After all, any time spent on bugs is time that could be spent on features!

See the full Dashcam demo here.

Dashcam is a screen recorder for debugging. It's an all-in-one debugging tool that makes it simple to find and fix bugs in complex apps. When you encounter an error with PubNub, Dashcam will play back your screen in sync with terminal, logs, and network requests in a format called a "Dash."

This form of debugging is known as time-travel debugging. Time Travel Debugging (TTD) can help you debug issues easier by letting you "rewind" your desktop, instead of having to reproduce the issue until you find the bug.

Debugging PubNub with Dashcam

With Dashcam, you can rewind and playback your PubNub logs and network requests from both the server and the client! As the desktop screen recording plays, the logs will appear in sync. Now, you can step through your program execution to see what went wrong!

  • Server Logs:

     

    Debug your PubNub channel creation and PAM by combining front-end and back-end logs

  • Console Logs from Chrome:

     

    Capture logs from multiple tabs and play them back together

  • Network Requests from Chrome:

     

    See all the outgoing and incoming network requests from the PubNub SDK

Tips for Debugging PubNub

As PubNub is networking infrastructure, the network requests are super important. You can find those under Chrome > Network in the dash (we'll show you how to record logs in a minute).

Then you can click on a request to see the request and response information.

In this demo, we also enable logVerbosity: true, which enables PubNub's own debugging information to appear in the console.

Share your bugs with PubNub

Not only can you view your own bugs with Dashcam, but Dashcam makes it easy to share bugs with others (and get help fixing them!). If you're having trouble with PubNub, capture your issue on Dashcam and send the dash to PubNub.

Getting started with Dashcam and PubNub

In this guide, we'll be starting with the PubNub JS Chat example. You can find our full code here.

We've modified the demo and added a simple backend server that subscribes to the same channels as the front end.

Set Up Dashcam

Download Dashcam

Dashcam is a desktop app available for Mac and Windows. You can download it from the website, here. Once you've installed Dashcam, continue to Step 2.

Install the Dashcam Chrome Extension

If your PubNub app has a web frontend, you'll want to get the Dashcam Chrome Extension. This will allow you to capture console logs and network requests from your application front-end.

With the desktop app open, you'll know the Chrome Extension is working if you see the "Connected" state indicator.

Don't worry, tracking is configured with a whitelist that you'll configure in the next step.

Send logs to Dashcam

Capture website logs and network requests

In the "logs" panel of the Dashcam desktop app, add a web pattern that matches the url of the site you want to collect logs from. In our example we'll use the http-sever package from npm, which defaults to port 8080.

http://localhost:8080

http*://*.yourapp.com*

Note that the patterns allow for wildcards like *, so you could use localhost:* for broader injection from any port.

patterns allow for wildcards

Now visit your website. Open Dashcam and click on the terminal icon. You should see a confirmation that Dashcam has received logs from the Chrome Extension.

Now, any dash you create with Dashcam will contain the logs from your front end!

Capture server logs from terminal

Now we're going to do a similar configuration for the server. Dashcam can tail any log file to capture those logs and display them in sync with your screen replay. You can select any number of log files or even make new ones just for Dashcam.

To set up logfile tracking, open the Dashcam desktop app. In the "Logs" settings of the Dashcam desktop app, add an application pattern. This pattern is typically a log file. If your application already has a log file somewhere, select that file instead. For this tutorial, we'll make a new file called pubnub.log.

/tmp/pubnub.log

Now that Dashcam is configured to watch this file, let's run our server.js and pipe the output to the file.

node server.js 2>&1 | tee -a /tmp/pubnub.log

Open Dashcam again, and verify that both your front-end and back-end logs are being captured by Dashcam!

Conclusion

That's it! Now you're all set up. Now whenever you encounter an issue with PubNub or otherwise, you'll be able to travel back in time to see what caused the bug. And when you get stumped, you can share your dash to get help.

0