diff --git a/bin/server.js b/bin/server.js index 614f82d..66370ce 100644 --- a/bin/server.js +++ b/bin/server.js @@ -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 diff --git a/config/env/common.js b/config/env/common.js index e2ae8c3..bc2b038 100644 --- a/config/env/common.js +++ b/config/env/common.js @@ -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,