Updated Branches: refs/heads/4.2 ae852adab -> 3a31a7e65
Adding readable start and end time stamps Signed-off-by: Santhosh Edukulla <santhosh.eduku...@citrix.com> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3a31a7e6 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3a31a7e6 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3a31a7e6 Branch: refs/heads/4.2 Commit: 3a31a7e65d91f860e9259ee4a6bce864c7a238eb Parents: ae852ad Author: Santhosh Edukulla <santhosh.eduku...@citrix.com> Authored: Fri Oct 25 23:39:35 2013 +0530 Committer: Girish Shilamkar <gir...@clogeny.com> Committed: Fri Nov 8 13:04:38 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/3a31a7e6/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. \