Skip to content

Commit 69f22a2

Browse files
Remove stray debug statements
1 parent 5a46ac7 commit 69f22a2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/client-store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = class OIDCClientStore {
4545
return Promise.reject(new Error('Cannot store null client'))
4646
}
4747
let issuer = encodeURIComponent(client.provider.url)
48-
console.log('PATH:', this.backend.path)
48+
4949
return this.backend.put(this.collectionName, issuer, client)
5050
.then(() => {
5151
return client

src/multi-rp-client.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ class MultiRpClient {
5959
// console.log('client.createRequest(). client:', client.serialize())
6060
return client.createRequest(authParams, session)
6161
.then(uri => {
62-
console.log(uri)
6362
return uri
6463
})
6564
}
@@ -140,8 +139,8 @@ class MultiRpClient {
140139
}
141140

142141
registerClient (config) {
143-
let debug = this.debug
144-
debug('new OIDCRelyingParty.register()', config)
142+
// let debug = this.debug
143+
// debug('new OIDCRelyingParty.register()', config)
145144
return OIDCRelyingParty.register(config.issuer, config, {})
146145
}
147146

0 commit comments

Comments
 (0)