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 trialbehar
10,799 PointsDont understand logging
I dont understand this logging thing at all, and he does not explain it further than what you see below. Can someone plz help?
import logging
logging.basicConfig(filename='cc.log', level=logging.DEBUG)
# Write your code below here
log.info("Test")
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsTo log a message using logging
you need to refer to the logging
module imported. The method to call is the level of the message: logging.info()
creates info messages, logging.debug()
creates debug messages, etc. The default level set in the basicConfig
says any message at that level of severity or greater will be output to the logfile.
So, your code needs to use the proper module reference logging
and the requested method .debug()
. Add you messages as the argument.
Post back if you have more questions. Good luck!
behar
10,799 Pointsbehar
10,799 PointsGot it, ty so much!