mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
26 lines
686 B
Text
26 lines
686 B
Text
#
|
|
# 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.
|
|
#
|
|
#
|
|
#
|
|
|
|
## to execute type python Test
|
|
|
|
|
|
import os
|
|
import logging
|
|
from awips import AlertVizHandler
|
|
from . import Record
|
|
|
|
avh = AlertVizHandler.AlertVizHandler(host=os.getenv("BROKER_ADDR","localhost"), port=9581, category='LOCAL', source='ANNOUNCER', level=logging.NOTSET)
|
|
record = Record.Record(10)
|
|
avh.emit(record)
|