1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 15:11:03 +00:00

Improved logging

This commit is contained in:
M66B 2021-08-17 19:07:58 +02:00
parent 997acda81d
commit ebb0b67d1f

View file

@ -1232,7 +1232,8 @@ class Core {
boolean draft = (EntityFolder.DRAFTS.equals(folder.type) || EntityFolder.DRAFTS.equals(target.type));
boolean duplicate = (copy && !account.isGmail());
if (draft || duplicate) {
Log.i(folder.name + " move from " + folder.type + " to " + target.type);
Log.i(folder.name + " " + (duplicate ? "copy" : "move") +
" from " + folder.type + " to " + target.type);
List<Message> icopies = new ArrayList<>();
for (Message imessage : map.keySet()) {