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 trialNenad 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,870 PointsDave StSomeWhere
19,870 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.