Author: jpeterka
Date: 2010-11-12 04:30:23 -0500 (Fri, 12 Nov 2010)
New Revision: 26490
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTBotExt.java
Log:
Logging for sleep() updated
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTBotExt.java
===================================================================
---
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTBotExt.java 2010-11-12
09:04:58 UTC (rev 26489)
+++
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTBotExt.java 2010-11-12
09:30:23 UTC (rev 26490)
@@ -87,7 +87,11 @@
}
public void sleep(long ms, String msg) {
- log.info("Bot sleeps for " + ms + " ms " + msg);
+ StackTraceElement[] ste = Thread.currentThread().getStackTrace();
+ if ((ste != null) && (ste[3] != null))
+ log.info("Bot sleeps for " + ms + " ms " + msg + " " +
ste[3].toString());
+ else
+ log.info("Bot sleeps for " + ms + " ms " + msg);
super.sleep(ms);
}
Show replies by date