summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index c7c0a67f6dc..a08fa9f8903 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -1064,7 +1064,7 @@ class Process(Runnable):
break
except Expect.TIMEOUT:
if watchDog and watchDog.timedOut(timeout):
- print("process {0} is hanging".format(process))
+ print("process {0} is hanging - {1}".format(process, time.strftime("%x %X")))
if current.driver.isInterrupted():
self.stop(current, False, exitstatus)
raise
@@ -1130,7 +1130,7 @@ class Process(Runnable):
process.waitSuccess(exitstatus=exitstatus, timeout=30)
break
except Expect.TIMEOUT:
- print("process {0} is hanging on shutdown".format(process))
+ print("process {0} is hanging on shutdown - {1}".format(process, time.strftime("%x %X")))
if current.driver.isInterrupted():
raise
finally: