mirror of https://github.com/M66B/FairEmail.git
Log activity intent
This commit is contained in:
parent
621dae825b
commit
4dae41b816
|
@ -71,12 +71,12 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
|
|||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
EntityLog.log(this, "Activity create " + this.getClass().getName() + " version=" + BuildConfig.VERSION_NAME);
|
||||
EntityLog.log(this, "Activity create " + this.getClass().getName() +
|
||||
" version=" + BuildConfig.VERSION_NAME);
|
||||
Intent intent = getIntent();
|
||||
if (intent != null) {
|
||||
Log.i(intent.toString());
|
||||
Log.logBundle(intent.getExtras());
|
||||
}
|
||||
if (intent != null)
|
||||
EntityLog.log(this, intent +
|
||||
" extras=" + TextUtils.join(", ", Log.getExtras(intent.getExtras())));
|
||||
|
||||
this.contacts = hasPermission(Manifest.permission.READ_CONTACTS);
|
||||
|
||||
|
|
Loading…
Reference in New Issue