summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2006-02-09 08:34:14 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2006-02-09 08:34:14 (GMT)
commit260ce43252a8144d191fa0a508d42cc8e107caa5 (patch)
tree65b5c8bdf0056f21356ca7e007a500c1931a490a
parent1eb77a50c86bd77eac0bc913d8b59e1dc3bb7687 (diff)
downloadcpython-260ce43252a8144d191fa0a508d42cc8e107caa5.zip
cpython-260ce43252a8144d191fa0a508d42cc8e107caa5.tar.gz
cpython-260ce43252a8144d191fa0a508d42cc8e107caa5.tar.bz2
Propagate exceptions from shutdown() if raiseExceptions is not set.
Added 'extra' keyword argument handling to logging calls, as discussed on python-dev.
-rw-r--r--Lib/logging/__init__.py20
1 files changed, 14 insertions, 6 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index da4c192..5616549 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -1053,14 +1053,20 @@ class Logger(Filterer):
continue
return filename, f.f_lineno, co.co_name
- def makeRecord(self, name, level, fn, lno, msg, args, exc_info):
+ def makeRecord(self, name, level, fn, lno, msg, args, exc_info, extra=None):
"""
A factory method which can be overridden in subclasses to create
specialized LogRecords.
"""
- return LogRecord(name, level, fn, lno, msg, args, exc_info)
+ rv = LogRecord(name, level, fn, lno, msg, args, exc_info)
+ if extra:
+ for key in extra:
+ if (key in ["message", "asctime"]) or (key in rv.__dict__):
+ raise KeyError("Attempt to overwrite %r in LogRecord" % key)
+ rv.__dict__[key] = extra[key]
+ return rv
- def _log(self, level, msg, args, exc_info=None):
+ def _log(self, level, msg, args, exc_info=None, extra=None):
"""
Low-level logging routine which creates a LogRecord and then calls
all the handlers of this logger to handle the record.
@@ -1072,7 +1078,7 @@ class Logger(Filterer):
if exc_info:
if type(exc_info) != types.TupleType:
exc_info = sys.exc_info()
- record = self.makeRecord(self.name, level, fn, lno, msg, args, exc_info)
+ record = self.makeRecord(self.name, level, fn, lno, msg, args, exc_info, extra)
self.handle(record)
def handle(self, record):
@@ -1324,12 +1330,14 @@ def shutdown():
"""
for h in _handlerList[:]: # was _handlers.keys():
#errors might occur, for example, if files are locked
- #we just ignore them
+ #we just ignore them if raiseExceptions is not set
try:
h.flush()
h.close()
except:
- pass
+ if raiseExceptions:
+ raise
+ #else, swallow
#Let's try and shutdown automatically on application exit...
try: