debug output
This commit is contained in:
parent
c28d54772d
commit
511eed3b2b
1 changed files with 5 additions and 3 deletions
|
|
@ -34,7 +34,7 @@
|
||||||
params.router.get('/api/admin/plugins/sso-saml', render);
|
params.router.get('/api/admin/plugins/sso-saml', render);
|
||||||
|
|
||||||
meta.settings.get('sso_saml', function(err, options) {
|
meta.settings.get('sso_saml', function(err, options) {
|
||||||
console.log('[sso-saml] got options ${options}');
|
console.log('[sso-saml] got options {0}'.format(options));
|
||||||
master_config = options;
|
master_config = options;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -72,6 +72,8 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
console.log("[sso-saml] samlObj = {}".format(samlObj));
|
||||||
|
|
||||||
if (samlObj){
|
if (samlObj){
|
||||||
|
|
||||||
if (master_config.metadata) {
|
if (master_config.metadata) {
|
||||||
|
|
@ -126,10 +128,10 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
console.log("Cannot create samlObj");
|
console.log("[sso-saml] Cannot create samlObj");
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("ssl-saml: init done");
|
console.log("[sso-saml] init done");
|
||||||
callback();
|
callback();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue