Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-dev] Tired of wrapped thread dumps/traces in bugzilla ?





Slightly better version...
(See attached file: PrettyTrace.java)

PS: this time I won't try to append examples that are going to be mangled
by the mailing system. <g>




                                                                           
             Philippe P                                                    
             Mulet/France/IBM@                                             
             IBMFR                                                      To 
             Sent by:                  eclipse-dev@xxxxxxxxxxx             
             eclipse-dev-admin                                          cc 
             @eclipse.org                                                  
                                                                   Subject 
                                       [eclipse-dev] Tired of wrapped      
             06/11/2004 12:47          thread dumps/traces in bugzilla ?   
             PM                                                            
                                                                           
                                                                           
             Please respond to                                             
                eclipse-dev                                                
                                                                           
                                                                           








I wrote a little conversion tool which will reassemble the wrapped line in
stack frames (thanks to bugzilla).

BEFORE
"Worker-124" prio=5 tid=0x03fc1630 nid=0x1694 in Object.wait()
[58cf000..58cfd8c]
        at java.lang.Object.wait(Native Method)
        at
org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:159)
        - locked <0x164c9500> (a org.eclipse.core.internal.jobs.ThreadJob)

AFTER
"Worker-124" prio=5 tid=0x03fc1630 nid=0x1694 in Object.wait()
[58cf000..58cfd8c]
        at java.lang.Object.wait(Native Method)
        at
org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:159)
        - locked <0x164c9500> (a org.eclipse.core.internal.jobs.ThreadJob)

It is *very* perfectible, but figured it could be useful anyway.

(See attached file: PrettyTrace.java)

Usage: PrettyTrace <traceFile>(See attached file: PrettyTrace.java)

Attachment: PrettyTrace.java
Description: Binary data

Attachment: PrettyTrace.java
Description: Binary data


Back to the top