mirror of https://github.com/apache/cloudstack.git
print further into the stack so we can see who's calling the Transaction methods
This commit is contained in:
parent
c00b9bf5aa
commit
1f4d34b9d5
|
|
@ -275,7 +275,7 @@ public class Transaction {
|
|||
final StackTraceElement[] stacks = Thread.currentThread().getStackTrace();
|
||||
final StringBuilder str = new StringBuilder();
|
||||
int i = 3, j = 3;
|
||||
while (j < 7 && i < stacks.length) {
|
||||
while (j < 15 && i < stacks.length) {
|
||||
StackTraceElement element = stacks[i];
|
||||
String filename = element.getFileName();
|
||||
String method = element.getMethodName();
|
||||
|
|
|
|||
Loading…
Reference in New Issue