mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
Reduced logging
This commit is contained in:
parent
6b08d3512e
commit
1bdd4897f4
1 changed files with 5 additions and 2 deletions
|
@ -371,8 +371,10 @@ public class ContactInfo {
|
|||
}
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
if (isRecoverable(ex, context))
|
||||
Log.i(ex);
|
||||
else {
|
||||
Log.w(ex);
|
||||
if (!isRecoverable(ex, context))
|
||||
try {
|
||||
file.createNewFile();
|
||||
} catch (IOException ex1) {
|
||||
|
@ -381,6 +383,7 @@ public class ContactInfo {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Generated
|
||||
boolean identicon = false;
|
||||
|
|
Loading…
Reference in a new issue