mirror of https://github.com/M66B/FairEmail.git
Added logging
This commit is contained in:
parent
89d1d7902f
commit
be02289a0f
|
@ -26,6 +26,7 @@ import android.content.Context;
|
|||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.text.Editable;
|
||||
import android.text.TextUtils;
|
||||
import android.text.TextWatcher;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
|
@ -149,6 +150,7 @@ public class FragmentDialogFolder extends FragmentDialogBase {
|
|||
Bundle args = getArguments();
|
||||
args.putLong("folder", folder.id);
|
||||
args.putString("type", folder.type);
|
||||
EntityLog.log(context, "Folder selected " + TextUtils.join(", ", Log.getExtras(args)));
|
||||
|
||||
sendResult(RESULT_OK);
|
||||
dismiss();
|
||||
|
@ -335,6 +337,8 @@ public class FragmentDialogFolder extends FragmentDialogBase {
|
|||
}
|
||||
}.execute(this, args, "folder:select");
|
||||
|
||||
EntityLog.log(context, "Folder selection " + TextUtils.join(", ", Log.getExtras(aargs)));
|
||||
|
||||
return new AlertDialog.Builder(context)
|
||||
.setIcon(R.drawable.twotone_folder_open_24)
|
||||
.setTitle(title)
|
||||
|
|
Loading…
Reference in New Issue