diff --git a/auth/facebook/login.html b/auth/facebook/login.html
index 45e4a06..ae8fccf 100644
--- a/auth/facebook/login.html
+++ b/auth/facebook/login.html
@@ -30,11 +30,13 @@
function fbLogin() {
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
- fbCallInfo(response);
+ console.log(response);
+ // fbCallInfo(response);
} else {
FB.login(function (response) {
if (response.status === 'connected'){
- fbCallInfo(response);
+ console.log(response);
+ // fbCallInfo(response);
}
}, {scope: 'public_profile,email'});
}