Reduced logging

This commit is contained in:
M66B 2020-07-06 07:55:59 +02:00
parent d5987b50df
commit b60d7648d7
1 changed files with 2 additions and 5 deletions

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);
}
}
}
}
}