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 Weather App (2015) Concurrency and Error Handling Handling Errors

Why did you make 2 logs if you're just going to remove one of them?

I don't see the reason why you did it, could you please explain?

1 Answer

if your talking about why he made two Log.v, That's because he wanted to see a response from the if part of the statement, and another from the else part of the statement, he removed one because of the principle DRY "don't repeat yourself"

But why is he putting the log over the if statement. As far as I understood it becomes if: .... else: alert user about error ´´´ java public void onResponse(okhttp3.Call call, Response response) throws IOException {try {

            Log.v(TAG, response.body().string());
            if (response.isSuccessful()){

            }
            else { alertUserAboutError();

            }
        } catch (IOException e) {

            Log.e(TAG, "Exception Caught", e);
        }

´´´