Reduce logging

pull/184/head
M66B 5 years ago
parent 38a2b17293
commit f001e1bf37

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

Loading…
Cancel
Save