1
0
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:
Joe Steele 2014-08-21 09:58:27 -04:00
parent c2db88d960
commit c80634d501
2 changed files with 3 additions and 3 deletions

View File

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

View File

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