log exception for failed keyserver checks

This commit is contained in:
Vincent Breitmoser 2021-01-29 13:32:10 +01:00
parent 8cb649f033
commit f6a5141e24

View file

@ -359,7 +359,7 @@ public class AddEditKeyserverDialogFragment extends DialogFragment implements On
Timber.w("Invalid keyserver URL entered by user.");
reason = VerifyReturn.INVALID_URL;
} catch (IOException e) {
Timber.w("Could not connect to entered keyserver url");
Timber.w(e, "Could not connect to entered keyserver url");
reason = VerifyReturn.CONNECTION_FAILED;
}