Fix crash reporter exception (yes really)
This commit is contained in:
parent
f342555b8a
commit
b49ff9a569
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public final class StacktraceAll implements Placeholder {
|
|||
.append(" priority=")
|
||||
.append(thread.getPriority())
|
||||
.append(" group=")
|
||||
.append(thread.getThreadGroup().getName())
|
||||
.append(thread.getThreadGroup() == null ? "<unknown>" : thread.getThreadGroup().getName())
|
||||
.append(" state=")
|
||||
.append(thread.getState().name())
|
||||
.append(" daemon=")
|
||||
|
|
Loading…
Reference in a new issue