diff --git a/server/utils/auth.js b/server/utils/auth.js index bc23a8634e..2dd6a4b90d 100644 --- a/server/utils/auth.js +++ b/server/utils/auth.js @@ -10,7 +10,6 @@ const providerHash = { }; export function getUsernameFromProvider(provider, profile) { - console.log(profile); return typeof providerHash[provider] === 'function' ? providerHash[provider](profile) : null;