简体   繁体   中英

How can I see the full stacktrace in Android?

I'm using intelliJ. My problem is the "... 8 more" as seen at the bottom of the stacktrace. I need to know those 8 more lines. What is causing this? How can I show all lines????

06-25 00:02:39.459: ERROR/System(4065): Uncaught exception thrown by finalizer
06-25 00:02:39.459: ERROR/System(4065): java.io.IOException: close failed: EIO (I/O error)
        at libcore.io.IoUtils.close(IoUtils.java:41)
        at java.io.FileInputStream.close(FileInputStream.java:121)
        at java.nio.FileChannelImpl.implCloseChannel(FileChannelImpl.java:91)
        at java.nio.channels.spi.AbstractInterruptibleChannel.close(AbstractInterruptibleChannel.java:80)
        at java.io.FileInputStream.close(FileInputStream.java:118)
        at java.io.FileInputStream.finalize(FileInputStream.java:142)
        at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:186)
        at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:169)
        at java.lang.Thread.run(Thread.java:856)
        Caused by: libcore.io.ErrnoException: close failed: EIO (I/O error)
        at libcore.io.Posix.close(Native Method)
        at libcore.io.BlockGuardOs.close(BlockGuardOs.java:75)
        at libcore.io.IoUtils.close(IoUtils.java:38)
        ... 8 more

You are seeing a deliberate optimization. The 8 lines are the same as the last 8 lines in the stack trace just preceding it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM