datatracker/ietf/utils/log.py
Henrik Levkowetz cfe466eb37 Merged [4991] from adam@nostrum.com:
Fixing time column wrapping problem that exhibits in (at least) Safari.
 - Legacy-Id: 5008
Note: SVN reference [4991] has been migrated to Git commit 5e384591fd
2012-11-06 15:23:17 +00:00

47 lines
1.3 KiB
Python

# Copyright The IETF Trust 2007, All Rights Reserved
try:
import syslog
write = syslog.syslog
except ImportError: # import syslog will fail on Windows boxes
pass
import sys
write = lambda x: sys.stderr.write(x+"\n")
import inspect
import os.path
import ietf
from django.conf import settings
def getclass(frame):
cls = None
argnames, varargs, varkw, defaults = inspect.getargvalues(frame)
if len(argnames) > 0:
selfname = argnames[0]
cls = defaults[selfname].__class__
return cls
def getcaller():
parent, pfile, pline, pfunction, lines, index = inspect.stack()[2]
pmodule = inspect.getmoduleinfo(pfile)[0]
pclass = getclass(parent)
return (pmodule, pclass, pfunction, pfile, pline)
def log(msg):
if isinstance(msg, unicode):
msg = msg.encode('unicode_escape')
try:
mod, cls, func, file, line = getcaller()
file = os.path.abspath(file)
file = file.replace(settings.BASE_DIR, "")
if func == "<module>":
where = ""
else:
where = " in " + func + "()"
except IndexError:
file, line, where = "/<UNKNOWN>", 0, ""
write("ietf%s(%d)%s: %s" % (file, line, where, msg))
log("IETFdb v%s started" % ietf.__version__)