There was an error while loading. Please reload this page.
1 parent 5d9709e commit a07c004Copy full SHA for a07c004
1 file changed
functions/src/functions/blocking.ts
@@ -37,7 +37,9 @@ export const beforeUserCreatedFunction = beforeUserCreated(
37
const userService = factory.user();
38
const credential = event.credential;
39
40
- logger.info(`${userId}: About to check existence of credential.`);
+ logger.info(
41
+ `${userId}: About to check existence of credential ${JSON.stringify(credential)}.`,
42
+ );
43
44
// Escape hatch for users using invitation code to enroll
45
if (!credential) {
@@ -48,7 +50,7 @@ export const beforeUserCreatedFunction = beforeUserCreated(
48
50
}
49
51
52
logger.info(
- `${userId}: About to check email address: ${event.data.email}.`,
53
+ `${userId}: About to check email address: ${JSON.stringify(event.data)}.`,
54
);
55
56
if (event.data.email === undefined) {
0 commit comments