mirror of https://github.com/M66B/FairEmail.git
Added logging
This commit is contained in:
parent
f64dbe7b38
commit
2c36399ba4
|
@ -1744,9 +1744,9 @@ class Core {
|
||||||
if (sync_shared_folders) {
|
if (sync_shared_folders) {
|
||||||
// https://tools.ietf.org/html/rfc2342
|
// https://tools.ietf.org/html/rfc2342
|
||||||
Folder[] namespaces = istore.getSharedNamespaces();
|
Folder[] namespaces = istore.getSharedNamespaces();
|
||||||
Log.i("Namespaces=" + namespaces.length);
|
EntityLog.log(context, "Namespaces=" + namespaces.length);
|
||||||
for (Folder namespace : namespaces) {
|
for (Folder namespace : namespaces) {
|
||||||
Log.i("Namespace=" + namespace.getFullName());
|
EntityLog.log(context, "Namespace=" + namespace.getFullName());
|
||||||
if (namespace.getSeparator() == separator) {
|
if (namespace.getSeparator() == separator) {
|
||||||
try {
|
try {
|
||||||
ifolders.addAll(Arrays.asList(namespace.list("*")));
|
ifolders.addAll(Arrays.asList(namespace.list("*")));
|
||||||
|
|
Loading…
Reference in New Issue