Improved logging

This commit is contained in:
M66B 2020-04-10 18:08:19 +02:00
parent aecfe956be
commit 5bc963c4b6
1 changed files with 3 additions and 1 deletions

View File

@ -704,7 +704,9 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
" flagged=" + with_flagged +
" hidden=" + with_hidden +
" encrypted=" + with_encrypted +
" attachments=" + with_attachments;
" attachments=" + with_attachments +
" after=" + (after == null ? "" : new Date(after)) +
" before=" + (before == null ? "" : new Date(before));
}
}
}