fix(config): Added webRTC port & connection preference reporting

This commit is contained in:
Chris Troutner
2025-02-23 10:34:00 -07:00
parent c6f0a1317c
commit 1b99f8afa1
5 changed files with 11 additions and 8 deletions
+3 -1
View File
@@ -122,7 +122,9 @@ class Server {
console.log('\nConfiguration:')
console.log(`Circuit Relay: ${this.config.isCircuitRelay}`)
console.log(`IPFS TCP port: ${this.config.ipfsTcpPort}`)
console.log(`IPFS WS port: ${this.config.ipfsWsPort}\n`)
console.log(`IPFS WS port: ${this.config.ipfsWsPort}`)
console.log(`IPFS WebRTC port: ${this.config.ipfsWebRtcPort}`)
console.log(`Connection preference: ${this.config.connectPref}\n`)
return app
} catch (err) {