1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-31 20:25:38 +00:00

Reduced logging

This commit is contained in:
M66B 2021-01-16 15:48:23 +01:00
parent bc2c89d339
commit d65a7e0c9f

View file

@ -925,13 +925,8 @@ public class IMAPStore extends Store
pex = ex;
}
if (pex != null) {
if (eu.faircode.email.BuildConfig.PLAY_STORE_RELEASE)
eu.faircode.email.Log.i(pex);
else
eu.faircode.email.Log.w(pex);
if (pex != null)
throw pex;
}
throw new ProtocolException("No login methods supported!");
}