Skip to content

Commit 88854fc

Browse files
committed
remove extra console log
1 parent e71f1e3 commit 88854fc

4 files changed

Lines changed: 0 additions & 4 deletions

File tree

02-User-Profile/src/Auth/Auth.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export default class Auth {
6767

6868
renewSession() {
6969
this.auth0.checkSession({}, (err, authResult) => {
70-
console.log(err, authResult);
7170
if (authResult && authResult.accessToken && authResult.idToken) {
7271
this.setSession(authResult);
7372
} else if (err) {

03-Calling-an-API/src/Auth/Auth.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ export default class Auth {
6868

6969
renewSession() {
7070
this.auth0.checkSession({}, (err, authResult) => {
71-
console.log(err, authResult);
7271
if (authResult && authResult.accessToken && authResult.idToken) {
7372
this.setSession(authResult);
7473
} else if (err) {

04-Authorization/src/Auth/Auth.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ export default class Auth {
7474

7575
renewSession() {
7676
this.auth0.checkSession({}, (err, authResult) => {
77-
console.log(err, authResult);
7877
if (authResult && authResult.accessToken && authResult.idToken) {
7978
this.setSession(authResult);
8079
} else if (err) {

05-Token-Renewal/src/Auth/Auth.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ export default class Auth {
7373

7474
renewSession() {
7575
this.auth0.checkSession({}, (err, authResult) => {
76-
console.log(err, authResult);
7776
if (authResult && authResult.accessToken && authResult.idToken) {
7877
this.setSession(authResult);
7978
} else if (err) {

0 commit comments

Comments
 (0)