mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 22:57:56 -05:00
31 lines
No EOL
647 B
Python
31 lines
No EOL
647 B
Python
##
|
|
##
|
|
|
|
|
|
#
|
|
# Pure python logging mechanism for logging to AlertViz from
|
|
# pure python (ie not JEP). DO NOT USE IN PYTHON CALLED
|
|
# FROM JAVA.
|
|
#
|
|
#
|
|
# SOFTWARE HISTORY
|
|
#
|
|
# Date Ticket# Engineer Description
|
|
# ------------ ---------- ----------- --------------------------
|
|
# 11/03/10 5849 cjeanbap Initial Creation.
|
|
#
|
|
#
|
|
#
|
|
|
|
import os
|
|
import sys
|
|
|
|
class Record():
|
|
def __init__(self, level=0, msg='Test Message'):
|
|
self.levelno=level
|
|
self.message=msg
|
|
self.exc_info=sys.exc_info()
|
|
self.exc_text="TEST"
|
|
|
|
def getMessage(self):
|
|
return self.message |