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

Logging Warning

Hi Team. I run the program in workspace and it generates the warning mesage in the cc.log file.

starter.py
import logging

logging.basicConfig(filename='cc.log', level=logging.DEBUG)

rainbow = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']

for index, element in enumerate(rainbow, 1):
    print("No.   Color")
    print(f'{index} .  {element} ')

index = 5
element = 'red'
logging.warning('The French have the Grail')

1 Answer

The challenge wants you to have a debug level message before the warning level message.

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

That is, keep the debug message from Task 1, when adding the warning message for task 2.