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)