12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Android logcatでスタックトレースが切り詰められるときのtips

Last updated at Posted at 2016-02-23

自分でなんとかするしかないっぽい。

public static void largeLogE(String tag, String content) {
    if (content.length() > 2000) {
        Log.e(tag, content.substring(0, 2000));
        largeLogE(tag, content.substring(2000));
    } else {
        Log.e(tag, content);
    }
}
12
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?