简体   繁体   English

如何在Android中查看完整的stacktrace?

[英]How can I see the full stacktrace in Android?

I'm using intelliJ. 我正在使用intelliJ。 My problem is the "... 8 more" as seen at the bottom of the stacktrace. 我的问题是在堆栈跟踪底部看到的“ ... 8个以上”。 I need to know those 8 more lines. 我需要再知道8条线。 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. 这8行与堆栈跟踪中紧接其后的最后8行相同。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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