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 trialZachary wathen
Python Development Techdegree Student 7,152 Pointsduring the coding challenge , i am getting typeError , stating that the int is not callable...
there are no int types in this code that I can tell, and it's set up exactly as he has it in the video, I rewatched the video probably 5 times. I may be missing something but I can't seem to get past this error code.
import logging
logging.basicConfig(filename = 'cc.log', level=logging.DEBUG)
logging.DEBUG ('warning')
1 Answer
jb30
44,806 Pointslogging.DEBUG
is a logging level, which happens to be an int with the numeric value 10
. logging.debug
in lowercase is a method which logs the message.
Try changing logging.DEBUG ('warning')
to logging.debug ('warning')
.