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 trialJavier Perez Narvaez
15,007 PointsLogging Warning
Hi Team. I run the program in workspace and it generates the warning mesage in the cc.log file.
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
jb30
44,806 PointsThe challenge wants you to have a debug level message before the warning level message.
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsChanged comment to answer.
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsThat is, keep the debug message from Task 1, when adding the warning message for task 2.