Issue #8890: Remove /tmp from examples.

This commit is contained in:
Raymond Hettinger 2011-06-26 15:29:27 +02:00
commit ea30a5e6bd
1 changed files with 1 additions and 1 deletions

View File

@ -723,7 +723,7 @@ the basis for code meeting your own specific requirements::
# The size of the rotated files is made small so you can see the results easily. # The size of the rotated files is made small so you can see the results easily.
def listener_configurer(): def listener_configurer():
root = logging.getLogger() root = logging.getLogger()
h = logging.handlers.RotatingFileHandler('/tmp/mptest.log', 'a', 300, 10) h = logging.handlers.RotatingFileHandler('mptest.log', 'a', 300, 10)
f = logging.Formatter('%(asctime)s %(processName)-10s %(name)s %(levelname)-8s %(message)s') f = logging.Formatter('%(asctime)s %(processName)-10s %(name)s %(levelname)-8s %(message)s')
h.setFormatter(f) h.setFormatter(f)
root.addHandler(h) root.addHandler(h)