17

e.printStackTrace() は正常に動作します (つまり、スタック トレースを stderr に出力します) が、Log.X はスタック トレースの出力にまったく失敗します。

例えば:

} catch (IOException e) {
    Log.e("Network", "Exception", e);
    e.printStackTrace();
}

出力:

08-31 03:46:21.992: W/Network(13238): Exception
08-31 03:46:22.092: W/System.err(13238): java.net.UnknownHostException: Unable to resolve host "...": No address associated with hostname
08-31 03:46:22.204: W/System.err(13238):    at java.net.InetAddress.lookupHostByName(InetAddress.java:394)
08-31 03:46:22.222: W/System.err(13238):    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
08-31 03:46:22.222: W/System.err(13238):    at java.net.InetAddress.getAllByName(InetAddress.java:214)
4

2 に答える 2

39

Log.X が使用する Android の Log.getStackTraceString が UnknownHostException を飲み込むことがわかりました。:(

から: http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.2.2_r1/android/util/Log.java#Log.getStackTraceString%28java.lang.投擲可能%29

public static String getStackTraceString(Throwable tr) {
    if (tr == null) {
        return "";
    }

    // This is to reduce the amount of log spew that apps do in the non-error
    // condition of the network being unavailable.
    Throwable t = tr;
    while (t != null) {
        if (t instanceof UnknownHostException) {
            return "";
        }
        t = t.getCause();
    }

    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    tr.printStackTrace(pw);
    return sw.toString();
}

ログの吐き出しを減らすことはすべて非常にうまくいきますが、私の例外が何であるかさえ教えてくれないのは悪いです!

于 2013-08-31T04:39:08.253 に答える