Index: third_party/twisted_8_1/twisted/python/syslog.py |
diff --git a/third_party/twisted_8_1/twisted/python/syslog.py b/third_party/twisted_8_1/twisted/python/syslog.py |
deleted file mode 100644 |
index 53b8a96a11c0e8fff23307654e3c6a2378d9bab4..0000000000000000000000000000000000000000 |
--- a/third_party/twisted_8_1/twisted/python/syslog.py |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-# Copyright (c) 2001-2004 Twisted Matrix Laboratories. |
-# See LICENSE for details. |
- |
-# |
-syslog = __import__('syslog') |
- |
-import log |
- |
-class SyslogObserver: |
- def __init__(self, prefix): |
- syslog.openlog(prefix) |
- |
- def emit(self, eventDict): |
- edm = eventDict['message'] |
- if not edm: |
- if eventDict['isError'] and eventDict.has_key('failure'): |
- text = eventDict['failure'].getTraceback() |
- elif eventDict.has_key('format'): |
- text = eventDict['format'] % eventDict |
- else: |
- # we don't know how to log this |
- return |
- else: |
- text = ' '.join(map(str, edm)) |
- |
- lines = text.split('\n') |
- while lines[-1:] == ['']: |
- lines.pop() |
- |
- firstLine = 1 |
- for line in lines: |
- if firstLine: |
- firstLine=0 |
- else: |
- line = '\t%s' % line |
- syslog.syslog('[%s] %s' % (eventDict['system'], line)) |
- |
-def startLogging(prefix='Twisted', setStdout=1): |
- obs = SyslogObserver(prefix) |
- log.startLoggingWithObserver(obs.emit, setStdout=setStdout) |