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.

Nenad Ristov
4,647 PointsLog "The French have the Grail" as a WARNING level message.
What's wrong? It shows me: Try Again
import logging
logging.basicConfig(filename='cc.log', level=logging.DEBUG, level=logging.WARNING)
logging.debug("I hope I pass Python")
logging.warning("The French have the Grail")

Jacques Plomion
2,446 PointsHi Nenad,
you specify twice the level in you call to basicConfig
.
The logging levels are "cumulative" so if you specify level=logging.DEBUG
it will log any messages that are of level DEBUG
and above in the levels list. See logging documentation here.
Hope this helps
Jacques
1 Answer

Aurthur Chakanyuka
4,202 PointsTry to use
logging.warn("Text as you want")
Dave StSomeWhere
19,822 PointsDave StSomeWhere
19,822 PointsIt passed for me just copying your code, you might want to just close and open your browser (or just restart the challenge) and try it again.