less logging decoding ssmi
This commit is contained in:
parent
97ab8bcdf3
commit
5489228a9b
2 changed files with 3 additions and 14 deletions
|
@ -44,6 +44,7 @@ import com.raytheon.uf.edex.plugin.bufrssmi.decoder.SSMIDataAdapter;
|
|||
* Jan 21, 2009 1939 jkorman Initial creation
|
||||
* May 17, 2013 1869 bsteffen Remove DataURI column from sat plot
|
||||
* types.
|
||||
* Sep 13, 2017 mjames@ucar Less logging
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -65,10 +66,7 @@ public class SSMIDecoder extends AbstractBUFRDecoder {
|
|||
super(name);
|
||||
try {
|
||||
pdd = PointDataDescription.fromStream(this.getClass()
|
||||
.getResourceAsStream("/res/pointdata/bufrssmi.xml"));
|
||||
|
||||
logger.info("PointDataDescription loaded");
|
||||
|
||||
.getResourceAsStream("/res/pointdata/bufrssmi.xml"));
|
||||
} catch(Exception e) {
|
||||
logger.error("PointDataDescription failed",e);
|
||||
logger.error("Plugin set to failSafe mode");
|
||||
|
@ -88,10 +86,8 @@ public class SSMIDecoder extends AbstractBUFRDecoder {
|
|||
decodedData = new ArrayList<PluginDataObject>();
|
||||
SSMIDataAdapter adapter = new SSMIDataAdapter(pdd, dao, pluginName);
|
||||
|
||||
logger.info(traceId + " - Document size = " + document.size());
|
||||
Iterator<BUFRDataDocument> iterator = document.iterator();
|
||||
while (iterator.hasNext()) {
|
||||
logger.info(traceId + " - Entering createDataList");
|
||||
|
||||
List<SSMIScanData> ssmiObs = adapter.createDataList(iterator, wmoHeader);
|
||||
if (ssmiObs != null) {
|
||||
|
|
|
@ -57,6 +57,7 @@ import com.raytheon.uf.edex.pointdata.PointDataPluginDao;
|
|||
* May 14, 2014 2536 bclement moved WMO Header to common, removed TimeTools usage
|
||||
* Jul 23, 2014 3410 bclement location changed to floats
|
||||
* Sep 16, 2014 3628 mapeters Replaced static imports.
|
||||
* Sep 13, 2017 mjames@ucar Less logging
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -161,7 +162,6 @@ public class SSMIDataAdapter extends BUFRPointDataAdapter<SSMIScanData> {
|
|||
if (obsData != null) {
|
||||
obsData.setWmoHeader(wmoHeader.getWmoHeader());
|
||||
obsList = new ArrayList<SSMIScanData>();
|
||||
logger.debug("Created master observation for scanline");
|
||||
// Now go get the point data for this obs
|
||||
// get the location and data sublists.
|
||||
IBUFRDataPacket p1 = dataList.get(9);
|
||||
|
@ -180,7 +180,6 @@ public class SSMIDataAdapter extends BUFRPointDataAdapter<SSMIScanData> {
|
|||
}
|
||||
}
|
||||
if ((locList != null) && (pointList != null)) {
|
||||
logger.info("Decoding " + locList.size() + " observations");
|
||||
Iterator<IBUFRDataPacket> it = pointList.iterator();
|
||||
for (IBUFRDataPacket p : locList) {
|
||||
// We have the obs data that describes the scan line.
|
||||
|
@ -220,9 +219,6 @@ public class SSMIDataAdapter extends BUFRPointDataAdapter<SSMIScanData> {
|
|||
int scnNo = getInt(dataList.get(SCAN_N_POS),
|
||||
IDecoderConstants.VAL_MISSING);
|
||||
|
||||
logger.info("getHeaderData(" + satId + "," + orbNo + "," + scnNo
|
||||
+ ")" + obsData.getDataTime());
|
||||
|
||||
if (satId != IDecoderConstants.VAL_MISSING) {
|
||||
obsData.setSatId(satId);
|
||||
if (orbNo != IDecoderConstants.VAL_MISSING) {
|
||||
|
@ -294,9 +290,6 @@ public class SSMIDataAdapter extends BUFRPointDataAdapter<SSMIScanData> {
|
|||
|
||||
PointDataContainer container = getContainer(pointData);
|
||||
if (container != null) {
|
||||
|
||||
logger.debug("Creating obs scanline obs data ");
|
||||
|
||||
PointDataView view = container.append();
|
||||
//
|
||||
view.setInt("orbitNumber", pointData.getOrbitNumber());
|
||||
|
|
Loading…
Add table
Reference in a new issue