We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b78ba52 commit 7b9d17fCopy full SHA for 7b9d17f
1 file changed
lib/Auth.ts
@@ -98,6 +98,8 @@ export const AuthenticationOptions: AuthOptions = {
98
* For email sign in, runs when the "Sign In" button is clicked (before email is sent).
99
*/
100
async signIn({ user }) {
101
+ console.log(`User is signing in: ${user.name}, ${user.email}, ${user.id}`);
102
+
103
Analytics.signIn(user.name ?? "Unknown User");
104
const db = await getDatabase(false);
105
0 commit comments