Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Priyesh Tungare
13,168 PointsReformatting Log.i()
Not able to make the Log.i statement Used Log.i("CodeChallenge",title + i +", "+pages);
But still getting error saying please check the log.i statement
1 Answer

Steve Hunter
57,682 PointsI think you need a + before the word title too.
Priyesh Tungare
13,168 PointsPriyesh Tungare
13,168 PointsIt worked when I used : Log.i("CodeChallenge", title + ", " + pages); I think the 'i' was not required.