From 2c9425ceeaad8214d45113383c696f282f839f2a Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 7 Sep 2016 10:44:08 -0700 Subject: [PATCH] fix debug --- src/oauthproxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oauthproxy.js b/src/oauthproxy.js index c9a6ef04b..d644cf1f9 100644 --- a/src/oauthproxy.js +++ b/src/oauthproxy.js @@ -139,7 +139,7 @@ function authenticate(req, res, next) { var scope = 'profile'; var oauthLogin = config.adminOrigin() + '/api/v1/oauth/dialog/authorize?response_type=code&client_id=' + result.id + '&redirect_uri=' + callbackUrl + '&scope=' + scope; - debug('begin OAuth flow for client %s.', result.name); + debug('begin OAuth flow for client %s.', result.id); // begin the OAuth flow res.redirect(oauthLogin);