Fix missing log argument in MigrateTo24_0_0

Closes #27779

Signed-off-by: Nosal, Peter (pn1895) <pn1895@att.com>
Co-authored-by: Nosal, Peter (pn1895) <pn1895@att.com>
This commit is contained in:
PetkoNosal 2024-03-13 17:36:27 +01:00 committed by GitHub
parent 9547c34592
commit 3989cb5e90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,6 +116,6 @@ public class MigrateTo24_0_0 implements Migration {
return;
}
realm.setFirstBrokerLoginFlow(flow);
LOG.debugf("Flow '%s' has been bound to realm %s as 'First broker login' flow", realm.getName());
LOG.debugf("Flow '%s' has been bound to realm %s as 'First broker login' flow", flow.getId(), realm.getName());
}
}