mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Format log messages with spaces
This commit is contained in:
parent
c2db88d960
commit
c80634d501
@ -198,10 +198,10 @@ public class KeyChainKeyManager extends X509ExtendedKeyManager {
|
||||
return mAlias;
|
||||
}
|
||||
}
|
||||
Log.w(K9.LOG_TAG, "Client certificate" + mAlias + "not issued by any of the requested issuers");
|
||||
Log.w(K9.LOG_TAG, "Client certificate " + mAlias + " not issued by any of the requested issuers");
|
||||
return null;
|
||||
}
|
||||
Log.w(K9.LOG_TAG, "Client certificate" + mAlias + "does not match any of the requested key types");
|
||||
Log.w(K9.LOG_TAG, "Client certificate " + mAlias + " does not match any of the requested key types");
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
@ -103,7 +103,7 @@ public class ClientCertificateSpinner extends LinearLayout {
|
||||
@Override
|
||||
public void alias(String alias) {
|
||||
if (K9.DEBUG)
|
||||
Log.d(K9.LOG_TAG, "User has selected client certificate alias:" + alias);
|
||||
Log.d(K9.LOG_TAG, "User has selected client certificate alias: " + alias);
|
||||
|
||||
setAlias(alias);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user