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

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

i cant seem to understand where i went wrong

starter.py
import logging

logging.basicConfig(filename='cc.log', level=logging.DEBUG)
logging.basicConfig(filename='warn', level=logging.WARNING)
# Write your code below here
class Pizza():
    def __init__(self, name, price):
        self.name = name
        self.price = price
        logging.debug("Pizza created: {} (${})".format(self.name, self.price))

    def make(self, quantity=1):
        logging.debug("Made {} {} pizza(s)".format(quantity, self.name))

    def eat(self, quantity=1):
        logging.debug("Ate {} pizza(s)".format(quantity, self.name))

pizza_01 = Pizza("artichoke", 15)
pizza_01.make()
pizza_01.eat()

pizza_02 = Pizza("margherita", 12)
pizza_02.make(2)
pizza_02.eat()

1 Answer

Steven Parker
Steven Parker
229,732 Points

The code added here doesn't seem to be at all related to the challenge. The challenge tasks only ask for simple logging messages, each of which can be accomplished with a single statement.

This extensive code defines a new "Pizza" class, which is not asked for in the instructions.

Did you perhaps get two different challenges mixed up?