mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-17 07:30:16 -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;
|
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;
|
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;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@ public class ClientCertificateSpinner extends LinearLayout {
|
|||||||
@Override
|
@Override
|
||||||
public void alias(String alias) {
|
public void alias(String alias) {
|
||||||
if (K9.DEBUG)
|
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);
|
setAlias(alias);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user