Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Simple Android App (2014) Testing and Debugging The Android Log

Carlos R Q
Carlos R Q
4,411 Points

System.out.println() ?

Can someone explain me the difference in using logs instead of using System.out.println ?

I've used the println method for checking some errors in code while doing projects in Eclipse, but I've been told that using logs is better, why?

1 Answer

Hello,

With the various Log methods available, we can filter to varying levels of verbosity. It is also the standard for Android programming so much so that some devices/emulators redirect all System.out.println() calls to Log.i(). Since it will be used anyhow, it is best to just follow the convention so other developers will have an easier time reading your code.