python-awips/awips/test/Record.py

32 lines
648 B
Python
Raw Permalink Normal View History

2015-06-12 11:57:06 -06:00
##
##
#
# Pure python logging mechanism for logging to AlertViz from
# pure python (ie not JEP). DO NOT USE IN PYTHON CALLED
# FROM JAVA.
2016-03-16 16:32:17 -05:00
#
#
2015-06-12 11:57:06 -06:00
# SOFTWARE HISTORY
2016-03-16 16:32:17 -05:00
#
2015-06-12 11:57:06 -06:00
# Date Ticket# Engineer Description
# ------------ ---------- ----------- --------------------------
# 11/03/10 5849 cjeanbap Initial Creation.
2016-03-16 16:32:17 -05:00
#
#
2015-06-12 11:57:06 -06:00
#
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"
2016-03-16 16:32:17 -05:00
2015-06-12 11:57:06 -06:00
def getMessage(self):
2016-03-16 16:32:17 -05:00
return self.message