aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <davids@redhat.com>2013-01-14 14:22:48 +0100
committerDavid Sommerseth <davids@redhat.com>2013-01-14 14:22:48 +0100
commitbe08f7cb83dce2256e2e62fe54e25a32794052a0 (patch)
tree0cd4ced41e91502a4e3532581e3bb90fc790ab5e
parenteae0031fba9782e3d768c9c3ee6b3a552f52f8f5 (diff)
downloadrteval-be08f7cb83dce2256e2e62fe54e25a32794052a0.tar.gz
hwlatdetect: Add some more useful debug info
Signed-off-by: David Sommerseth <davids@redhat.com>
-rw-r--r--rteval/modules/measurement/HWLatDetect.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/rteval/modules/measurement/HWLatDetect.py b/rteval/modules/measurement/HWLatDetect.py
index ad3fb59..bcc39ed 100644
--- a/rteval/modules/measurement/HWLatDetect.py
+++ b/rteval/modules/measurement/HWLatDetect.py
@@ -64,6 +64,12 @@ class HWLatDetectRunner(rtevalModulePrototype):
self.__hwlat.testduration = int(self.__cfg.setdefault('duration', 10))
self.__hwlat.setup()
+ self._log(Log.DEBUG, "HWLatDetect settings: \n"
+ + "\t threshold: %i\n" % (self.__cfg.threshold)
+ + "\t window: %i\n" % (self.__cfg.window)
+ + "\t width: %i\n" % (self.__cfg.width)
+ + "\t duration: %i" % (self.__cfg.duration))
+
def _WorkloadTask(self):
if self.__hwlat is None: