Added minor clarification in logging HOWTO.

This commit is contained in:
Vinay Sajip 2013-12-06 11:22:24 +00:00
parent dd799d2e32
commit b1a92a4c89

View file

@ -122,7 +122,8 @@ Logging to a file
^^^^^^^^^^^^^^^^^
A very common situation is that of recording logging events in a file, so let's
look at that next::
look at that next. Be sure to try the following in a newly-started Python
interpreter, and don't just continue from the session described above::
import logging
logging.basicConfig(filename='example.log',level=logging.DEBUG)