InternalAccountQuery: Add missing space to error message

Change-Id: Ifbda7b6ef7677a79a3e0b6b7c8bda86e60b34654
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2017-10-13 17:17:26 +02:00
parent 64db41de37
commit db710584a2

View File

@@ -104,7 +104,7 @@ public class InternalAccountQuery extends InternalQuery<AccountState> {
return accountStates.get(0);
} else if (accountStates.size() > 0) {
StringBuilder msg = new StringBuilder();
msg.append("Ambiguous external ID ").append(externalId).append("for accounts: ");
msg.append("Ambiguous external ID ").append(externalId).append(" for accounts: ");
Joiner.on(", ")
.appendTo(msg, Lists.transform(accountStates, AccountState.ACCOUNT_ID_FUNCTION));
log.warn(msg.toString());