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

taliarosen
taliarosen
2,492 Points

I'm getting a TypeError that 'int' is not callable but I don't have any integers

lines 1 and 3 were given to me so it must be a problem in line 5, but I really don't get it

starter.py
import logging

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

logging.DEBUG("anything you want")

1 Answer

Jeff Muday
MOD
Jeff Muday
Treehouse Moderator 28,716 Points

You have correctly figured that the error is on line 5 logging.DEBUG(...) nice job!

Python can have some rather cryptic error messages, but really not that cryptic considering that logging.DEBUG was used as an integer on line 3. And then on line 5, you were reusing it as a function.

You are so close to a solution-- all you have to do is make debug into lowercase.

Good luck with your Python journey!

import logging

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

logging.debug("anything you want")