diff --git a/edexOsgi/com.raytheon.edex.plugin.radar/src/com/raytheon/edex/plugin/radar/RadarDecoder.java b/edexOsgi/com.raytheon.edex.plugin.radar/src/com/raytheon/edex/plugin/radar/RadarDecoder.java index dffebca177..75821e4a71 100644 --- a/edexOsgi/com.raytheon.edex.plugin.radar/src/com/raytheon/edex/plugin/radar/RadarDecoder.java +++ b/edexOsgi/com.raytheon.edex.plugin.radar/src/com/raytheon/edex/plugin/radar/RadarDecoder.java @@ -64,7 +64,6 @@ import com.raytheon.uf.common.dataplugin.radar.util.TiltAngleBin; import com.raytheon.uf.common.localization.IPathManager; import com.raytheon.uf.common.localization.LocalizationContext; import com.raytheon.uf.common.localization.PathManagerFactory; -import com.raytheon.uf.common.status.IPerformanceStatusHandler; import com.raytheon.uf.common.status.IUFStatusHandler; import com.raytheon.uf.common.status.PerformanceStatus; import com.raytheon.uf.common.status.UFStatus; @@ -152,9 +151,6 @@ public class RadarDecoder { private final String RADAR = "RADAR"; - private final IPerformanceStatusHandler perfLog = PerformanceStatus - .getHandler("Radar:"); - public RadarDecoder() throws DecoderException { String dir = ""; @@ -194,9 +190,6 @@ public class RadarDecoder { // decode the product String arch = new String(messageData, 0, 4); - ITimer timer = TimeUtil.getTimer(); - - timer.start(); // for level2 data, this does not happen very often if (LEVEL_TWO_IDENTS.contains(arch)) { decodeLevelTwoData(messageData, recordList); @@ -409,10 +402,6 @@ public class RadarDecoder { } finalizeRecord(record); - - timer.stop(); - perfLog.logDuration("Time to Decode", timer.getElapsedTime()); - recordList.add(record); } diff --git a/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/SfcObsDecoder.java b/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/SfcObsDecoder.java index 08611a54f5..806f72a105 100644 --- a/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/SfcObsDecoder.java +++ b/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/SfcObsDecoder.java @@ -34,10 +34,7 @@ import com.raytheon.edex.plugin.sfcobs.decoder.ISfcObsDecoder; import com.raytheon.edex.plugin.sfcobs.decoder.SfcObsDecoderFactory; import com.raytheon.uf.common.dataplugin.PluginDataObject; import com.raytheon.uf.common.dataplugin.sfcobs.ObsCommon; -import com.raytheon.uf.common.status.IPerformanceStatusHandler; -import com.raytheon.uf.common.status.PerformanceStatus; import com.raytheon.uf.common.time.util.ITimer; -import com.raytheon.uf.common.time.util.TimeUtil; import com.raytheon.uf.common.wmo.WMOHeader; import com.raytheon.uf.common.wmo.WMOTimeParser; import com.raytheon.uf.edex.decodertools.core.DecoderTools; @@ -85,9 +82,6 @@ public class SfcObsDecoder extends AbstractDecoder { // Name of the plugin controlling this decoder. public static final String PLUGIN_NAME = "sfcobs"; - private final IPerformanceStatusHandler perfLog = PerformanceStatus - .getHandler("SfcObs:"); - /** The logger */ private final Logger logger = LoggerFactory.getLogger(getClass()); @@ -135,9 +129,7 @@ public class SfcObsDecoder extends AbstractDecoder { SfcObsSeparator separator = SfcObsSeparator.separate(data, headers); List retVal = new ArrayList(); HashMap obsMap = new HashMap(); - ITimer timer = TimeUtil.getTimer(); - timer.start(); while (separator.hasNext()) { SfcObsDecoderInput input = separator.next(); PluginDataObject report = null; @@ -177,8 +169,6 @@ public class SfcObsDecoder extends AbstractDecoder { } } } - timer.stop(); - perfLog.logDuration("Time to Decode", timer.getElapsedTime()); return retVal.toArray(new PluginDataObject[retVal.size()]); } diff --git a/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/decoder/synoptic/SHIPSynopticDecoder.java b/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/decoder/synoptic/SHIPSynopticDecoder.java index d674688f1b..12ae2c041d 100644 --- a/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/decoder/synoptic/SHIPSynopticDecoder.java +++ b/edexOsgi/com.raytheon.edex.plugin.sfcobs/src/com/raytheon/edex/plugin/sfcobs/decoder/synoptic/SHIPSynopticDecoder.java @@ -158,8 +158,6 @@ public class SHIPSynopticDecoder extends AbstractSynopticDecoder { clearSectionDecoders(); return; } - logger.info("<-------" + getReportIdentifier() - + "---------------->"); decodeLatitude(); decodeLongitude(); if (isFixedBuoy) { diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.redbook/src/com/raytheon/uf/edex/plugin/redbook/RedbookDecoder.java b/edexOsgi/com.raytheon.uf.edex.plugin.redbook/src/com/raytheon/uf/edex/plugin/redbook/RedbookDecoder.java index 64f9d4cc1f..1faa2ac8a3 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.redbook/src/com/raytheon/uf/edex/plugin/redbook/RedbookDecoder.java +++ b/edexOsgi/com.raytheon.uf.edex.plugin.redbook/src/com/raytheon/uf/edex/plugin/redbook/RedbookDecoder.java @@ -28,12 +28,9 @@ import com.raytheon.edex.plugin.AbstractDecoder; import com.raytheon.uf.common.dataplugin.PluginDataObject; import com.raytheon.uf.common.dataplugin.PluginException; import com.raytheon.uf.common.dataplugin.redbook.RedbookRecord; -import com.raytheon.uf.common.status.IPerformanceStatusHandler; import com.raytheon.uf.common.status.IUFStatusHandler; import com.raytheon.uf.common.status.PerformanceStatus; import com.raytheon.uf.common.status.UFStatus; -import com.raytheon.uf.common.time.util.ITimer; -import com.raytheon.uf.common.time.util.TimeUtil; import com.raytheon.uf.common.wmo.WMOHeader; import com.raytheon.uf.edex.database.plugin.PluginFactory; import com.raytheon.uf.edex.database.query.DatabaseQuery; @@ -105,9 +102,6 @@ public class RedbookDecoder extends AbstractDecoder { private static final IUFStatusHandler logger = UFStatus .getHandler(RedbookDecoder.class); - private final IPerformanceStatusHandler perfLog = PerformanceStatus - .getHandler("Redbook:"); - private String traceId = null; /** @@ -139,8 +133,6 @@ public class RedbookDecoder extends AbstractDecoder { String fileName = (String) headers.get(WMOHeader.INGEST_FILE_NAME); WMOHeader wmoHeader = new WMOHeader(rawMessage, fileName); if (wmoHeader.isValid()) { - ITimer timer = TimeUtil.getTimer(); - timer.start(); int start = wmoHeader.getMessageDataStart(); @@ -167,8 +159,6 @@ public class RedbookDecoder extends AbstractDecoder { e); } } - timer.stop(); - perfLog.logDuration("Time to Decode", timer.getElapsedTime()); } else { logger.error(traceId + "- No valid WMO header found in data."); } diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java index 9fcad3bf7c..74b07f4c6c 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java @@ -48,7 +48,6 @@ import com.raytheon.uf.common.localization.IPathManager; import com.raytheon.uf.common.localization.LocalizationFile; import com.raytheon.uf.common.localization.PathManagerFactory; import com.raytheon.uf.common.serialization.SingleTypeJAXBManager; -import com.raytheon.uf.common.status.IPerformanceStatusHandler; import com.raytheon.uf.common.status.IUFStatusHandler; import com.raytheon.uf.common.status.PerformanceStatus; import com.raytheon.uf.common.status.UFStatus;