Issue #2336 Remove redundant grib error logging.

Former-commit-id: af32b6cf757aa4e08654b6e2215508a8d534b236
This commit is contained in:
Ben Steffensmeier 2013-09-10 14:09:08 -05:00
parent d63abcb6a8
commit be12a9307a

View file

@ -118,6 +118,8 @@ THINNED_GRID_PT_MAP = {0:73, 1.25:73, 2.50:73, 3.75:73, 5.0:73, 6.25:73, 7.50:73
THINNED_GRID_VALUES = THINNED_GRID_PT_MAP.values()
logHandler = UFStatusHandler.UFStatusHandler("com.raytheon.edex.plugin.grib", "EDEX")
#
# Python implementation of the grib decoder. This decoder uses the python ctypes
# library to access the NCEP grib decoder for extracting data
@ -146,7 +148,7 @@ class GribDecoder():
self.fileName = filePath
self.log = logging.getLogger("GribDecoder")
self.log.addHandler(UFStatusHandler.UFStatusHandler("com.raytheon.edex.plugin.grib", "EDEX"))
self.log.addHandler(logHandler)
##