python-awips/awips/test/Record.py

28 lines
639 B
Python
Raw Normal View History

2018-09-05 15:52:38 -06:00
#
# 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 sys
2018-09-05 15:52:38 -06:00
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"
2018-09-05 15:52:38 -06:00
def getMessage(self):
2018-10-03 12:25:31 -06:00
return self.message