DEV Community

Zarah Dominguez
Zarah Dominguez

Posted on • Originally published at zdominguez.com on

On-Device Debugging Part IV: Log All The Things!

Over the past year, my team have been steadily building a Developer Options screen for our app. It is a simple PreferenceScreen available on debug builds that help us:

  • figure out what’s going on without needing to be attached to a computer
  • test various configurations without re-installing
  • have a host for various experimentations we are trying to explore

In this series of posts, I will share what these various options are and how we made them.

Read the other posts in this series:

(If you are not familiar with PreferenceFragmentCompat, I highly suggest to read about that first before proceeding. You can start with this AndroidX guide on Settings.)


As I mentioned in part II, we leverage Timber a lot. Those stacktrace log screens have been really useful when the app misbehaves, but what about those times when we just want to have checkpoints whilst using the app?

Enter our next set of developer options:




More debugging!

Show Debug Toasts

Toasts are a great way of setting visual checkpoints in an app. They are relatively unobtrusive and easy to create.

Enabling “Show debug Toasts” in our developer settings allows us to surface these checkpoints when we are testing something unpredictable:





I previously talked about a geofencing feature we had to implement, and we have that feature to thank for spurning the idea for this debugging feature.

In this feature, we want the app to notify the user when they enter a geofence. Testing geofences in the middle of the city can be tricky, and having visual cues that let us know if we have entered or exited a geofence has been super helpful for us.

This function lives in our DebugExtensions class:

(In this case, SettingsInteractor takes care of exposing some of the debug options that our main source set needs access to.)

Having a developer option toggle to control this means we can turn the Toasts off when it gets too annoying, and we lower the risk of leaving a debugging Toast when we release to production as well.

Enable Leak Canary

We have some really old Activities in the app that drive Leak Canary crazy. Until we get around to cleaning them up, it also drives our QAs crazy. This toggle gives them the power to turn the tool off so they can test in peace.

As a rule, developers keep this toggle on during active development. As for those old Activities, we are in the process of reworking them to make them perform better.

Show Debug Notification

When enabled, the app shows a persistent notification that serves as the shortcut to this Developer Settings screen (we also provided an entry to this screen in our app’s junk drawer aka the “More” menu for debug builds). Pretty straightforward.

Logs

When connected to our development computers, we have a wide array of debugging tools at our disposal. We can use Timber, or System.out, or Toasts, or breakpoints, etc.

But going back to our geofencing feature, all of these options are not really viable to us during testing. Sure we can walk around Surry Hills with a laptop and keep an eye on Logcat whilst debugging. But we really can’t expect everyone who is testing the app to do this.

When this option is turned on, we send all the Logcat information from our app into a text file:

Getting those logs out of a particular device can be fiddly, dealing with multiple OEMs and USB variations. And those logs are pretty useless just sitting there, so we put in the option to send those files to us:

Using ACTION_SEND_MULTIPLE with the Intent allows us to automatically attach all the log files we can find in the user’s debug file storage.




Gimme those logs!

Depending on the email client they choose to send the files with, they can remove or add more files as they please.

To be good citizens, we have also provided the option to clear all existing logs so that users can reclaim their precious storage space.

Out of all the debugging features that we have, this one is probably my favourite. 💚

(Massive thanks go out to @ataul for all his patience reviewing my crazy ramblings 😆 )


In the next post, we will look at how our developer settings help us work better with the designers in our team. Stay tuned! 📻

Top comments (0)