Remove logging of eStrId.

This commit is contained in:
Jeremy Fincher 2004-05-11 22:37:32 +00:00
parent 65c9ebc746
commit 6bff999818

View File

@ -69,7 +69,8 @@ class Logger(logging.Logger):
eId = hex(hash(eStrId) & 0xFFFFF)
logging.Logger.exception(self, *args)
self.error('Exception id: %s', eId)
self.error('Exception string: %s', eStrId)
# The traceback should be sufficient if we want it.
# self.error('Exception string: %s', eStrId)
class StdoutStreamHandler(logging.StreamHandler):