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