log provider info

This commit is contained in:
peintnermax
2024-08-09 10:24:26 +02:00
parent 0ea6ecbf56
commit be5c831ac2

View File

@@ -116,6 +116,7 @@ function createUser(
info: IDPInformation,
): Promise<string> {
const userData = PROVIDER_MAPPING[provider](info);
console.log(JSON.stringify(info));
return userService.addHumanUser(userData, {}).then((resp) => resp.userId);
}