In the plugin openidconnectclient, when username generator fails to generate a username, it raises an error but without a message. So, we have an empty error in the log file. This is not helpful to investigate issues.
if (! isset($user_information['given_name']) && ! isset($user_information['family_name'])) {
throw new NotEnoughDataToGenerateUsernameException();
}