1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 07:01:05 +00:00

Reduced logging

This commit is contained in:
M66B 2020-07-06 07:55:59 +02:00
parent d5987b50df
commit b60d7648d7

View file

@ -371,16 +371,13 @@ public class ContactInfo {
}
}
} catch (Throwable ex) {
if (isRecoverable(ex, context))
Log.w(ex);
else {
Log.e(ex);
Log.w(ex);
if (!isRecoverable(ex, context))
try {
file.createNewFile();
} catch (IOException ex1) {
Log.e(ex1);
}
}
}
}
}