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

Python Write Better Python Buggy Logs Log Messages

Nenad Ristov
Nenad Ristov
4,647 Points

Log "The French have the Grail" as a WARNING level message.

What's wrong? It shows me: Try Again

starter.py
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")
Dave StSomeWhere
Dave StSomeWhere
19,870 Points

It 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.

Hi 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

Try to use

logging.warn("Text as you want")