//When sending exception manually, PushLink doesn't print it in logcat. You have to print it by yourself.
Log.e("MyApp", "Some", t);
PushLink.sendAsyncException(t);
Map<String, String> moreInfo = ...
PushLink.sendAsyncException(t, moreInfo);
//You can also disable the automatic exception catch/send
PushLink.disableExceptionNotification();
//To receive LogCat last ones 100 lines just add <uses-permission android:name="android.permission.READ_LOGS" />