From 88d31e5c350c9afd3ee280749df3fbfb1b78d125 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Tue, 29 Sep 2009 17:48:42 +0200 Subject: [PATCH] Fix burnin's verbose mode The timestamp need special formatting, which was done for the internal buffer storage but not for the messages logged in verbose mode. This patch unifies the formatting for these two cases. Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- tools/burnin | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/burnin b/tools/burnin index b38680fc4..8d844f2d9 100755 --- a/tools/burnin +++ b/tools/burnin @@ -128,10 +128,10 @@ class Burner(object): def Feedback(self, msg): """Acumulate feedback in our buffer.""" - self._feed_buf.write("%s %s\n" % (time.ctime(utils.MergeTime(msg[0])), - msg[2])) + formatted_msg = "%s %s" % (time.ctime(utils.MergeTime(msg[0])), msg[2]) + self._feed_buf.write(formatted_msg + "\n") if self.opts.verbose: - Log(msg, indent=3) + Log(formatted_msg, indent=3) def MaybeRetry(self, retry_count, msg, fn, *args): """Possibly retry a given function execution. -- GitLab