polkitAgent: Add missing space to log string

In my journal, I have:

> JS LOG: polkitAuthenticationAgent: Received 2identities that can be
> used for authentication. Only considering one.

There should be a space after the number.

https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1413
This commit is contained in:
Will Thompson 2020-08-17 08:20:33 +01:00 committed by Florian Müllner
parent 00437750ed
commit 1c0be1a36b

View File

@ -44,7 +44,7 @@ var AuthenticationDialog = GObject.registerClass({
let bodyContent = new Dialog.MessageDialogContent(); let bodyContent = new Dialog.MessageDialogContent();
if (userNames.length > 1) { if (userNames.length > 1) {
log('polkitAuthenticationAgent: Received %d'.format(userNames.length) + log('polkitAuthenticationAgent: Received %d '.format(userNames.length) +
'identities that can be used for authentication. Only ' + 'identities that can be used for authentication. Only ' +
'considering one.'); 'considering one.');
} }