mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 23:12:55 +00:00
Improved logging
This commit is contained in:
parent
997acda81d
commit
ebb0b67d1f
1 changed files with 2 additions and 1 deletions
|
@ -1232,7 +1232,8 @@ class Core {
|
||||||
boolean draft = (EntityFolder.DRAFTS.equals(folder.type) || EntityFolder.DRAFTS.equals(target.type));
|
boolean draft = (EntityFolder.DRAFTS.equals(folder.type) || EntityFolder.DRAFTS.equals(target.type));
|
||||||
boolean duplicate = (copy && !account.isGmail());
|
boolean duplicate = (copy && !account.isGmail());
|
||||||
if (draft || duplicate) {
|
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<>();
|
List<Message> icopies = new ArrayList<>();
|
||||||
for (Message imessage : map.keySet()) {
|
for (Message imessage : map.keySet()) {
|
||||||
|
|
Loading…
Reference in a new issue