Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: third_party/twisted_8_1/twisted/python/syslog.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)
« no previous file with comments | « third_party/twisted_8_1/twisted/python/shortcut.py ('k') | third_party/twisted_8_1/twisted/python/test/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698