Reduce logging

This commit is contained in:
M66B 2020-08-26 10:23:05 +02:00
parent 38a2b17293
commit f001e1bf37
1 changed files with 2 additions and 1 deletions

View File

@ -374,7 +374,8 @@ public class ContactInfo {
if (isRecoverable(ex, context))
Log.i(ex);
else {
Log.w(ex);
if (!(ex instanceof FileNotFoundException))
Log.w(ex);
try {
file.createNewFile();
} catch (IOException ex1) {