mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-21 16:52:00 -07:00
fix(startup): Listing web3 server at startup
This commit is contained in:
+4
-1
@@ -56,7 +56,10 @@ class Server {
|
||||
})
|
||||
|
||||
console.log(`Starting environment: ${config.env}`)
|
||||
console.log(`Debug level: ${config.debugLevel}`)
|
||||
console.log(`Debug level: ${config.debugLevel}\n`)
|
||||
console.log(`Using this web3 CashStack service: ${config.consumerUrl}`)
|
||||
console.log('Alternative web services listed here: https://gist.github.com/christroutner/63c5513782181f8b8ea3eb89f7cadeb6')
|
||||
console.log('This app is built on top of the CashStack. Find out more: https://CashStack.info\n')
|
||||
|
||||
// MIDDLEWARE START
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -97,7 +97,7 @@ module.exports = {
|
||||
// BCH Mnemonic for generating encryption keys and payment address
|
||||
mnemonic: process.env.MNEMONIC ? process.env.MNEMONIC : '',
|
||||
|
||||
debugLevel: process.env.DEBUG_LEVEL ? parseInt(process.env.DEBUG_LEVEL) : 2,
|
||||
debugLevel: process.env.DEBUG_LEVEL ? parseInt(process.env.DEBUG_LEVEL) : 1,
|
||||
|
||||
// Settings for production, using external go-ipfs node.
|
||||
isProduction: process.env.SVC_ENV === 'production' ? true : false,
|
||||
|
||||
Reference in New Issue
Block a user