public class TimeLogger
extends java.lang.Object
| Constructor and Description |
|---|
TimeLogger() |
| Modifier and Type | Method and Description |
|---|---|
static void |
logElapsedTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
java.lang.String strType,
long lngStartTime,
long lngEndTime)
Write the elapsed time after a processing operation to the logs
|
static void |
logElapsedTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
java.lang.String strType,
java.lang.String strDevice,
long lngStartTime,
long lngEndTime)
Write the elapsed time after a processing operation to the logs
|
static void |
logFullDiscoveryTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
long lngStartTime,
long lngEndTime)
Write the elapsed time for Full Discovery to the logs
|
static void |
logPartialDiscoveryTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
long lngStartTime,
long lngEndTime)
Write the elapsed time for Partial Discovery to the logs
|
public static void logFullDiscoveryTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
long lngStartTime,
long lngEndTime)
LOGGER - Java Logger instancestrMethod - The name of the original methodstrClass - The name of the original classlngStartTime - The start time (in long)lngEndTime - The end time (in long)public static void logPartialDiscoveryTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
long lngStartTime,
long lngEndTime)
LOGGER - Java Logger instancestrMethod - The name of the original methodstrClass - The name of the original classlngStartTime - The start time (in long)lngEndTime - The end time (in long)public static void logElapsedTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
java.lang.String strType,
long lngStartTime,
long lngEndTime)
LOGGER - Java Logger instancestrMethod - The name of the original methodstrClass - The name of the original classstrType - The type of operation for which the elapsed time is being
measuredlngStartTime - The start time (in long)lngEndTime - The end time (in long)public static void logElapsedTime(java.util.logging.Logger LOGGER,
java.lang.String strMethod,
java.lang.String strClass,
java.lang.String strType,
java.lang.String strDevice,
long lngStartTime,
long lngEndTime)
LOGGER - Java Logger instancestrMethod - The name of the original methodstrClass - The name of the original classstrType - The type of operation for which the elapsed time is being
measuredstrDevice - Device namelngStartTime - The start time (in long)lngEndTime - The end time (in long)