log exception for failed keyserver checks

master
Vincent Breitmoser 2021-01-29 13:32:10 +01:00
parent 8cb649f033
commit f6a5141e24
1 changed files with 1 additions and 1 deletions

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