You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by mc...@apache.org on 2013/10/29 04:53:20 UTC

[30/50] [abbrv] git commit: updated refs/heads/object_store_migration to 5ec2a44

Adding readable start and end time stamps

Signed-off-by: Santhosh Edukulla <Sa...@citrix.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b4ceefa4
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b4ceefa4
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b4ceefa4

Branch: refs/heads/object_store_migration
Commit: b4ceefa469cfc1ebce8e162ed569a5c844d8765e
Parents: f4fb5f5
Author: Santhosh Edukulla <Sa...@citrix.com>
Authored: Fri Oct 25 23:39:35 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Mon Oct 28 11:29:27 2013 +0530

----------------------------------------------------------------------
 tools/marvin/marvin/marvinPlugin.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b4ceefa4/tools/marvin/marvin/marvinPlugin.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/marvinPlugin.py b/tools/marvin/marvin/marvinPlugin.py
index 3b282e4..c5931e0 100644
--- a/tools/marvin/marvin/marvinPlugin.py
+++ b/tools/marvin/marvin/marvinPlugin.py
@@ -140,9 +140,10 @@ class MarvinPlugin(Plugin):
         if self.startTime is not None:
             totTime = int(endTime - self.startTime)
             self.logger.debug(
-                "****TestCaseName: %s; Time Taken: %s Seconds; \
-                StartTime: %s; EndTime: %s****"
-                % (self.testName, str(totTime), self.startTime, endTime))
+                "TestCaseName: %s; Time Taken: %s Seconds; \
+                StartTime: %s; EndTime: %s"
+                % (self.testName, str(totTime),
+                   str(time.ctime(self.startTime)), str(time.ctime(endTime))))
 
     def _injectClients(self, test):
         self.debug_stream. \