diff --git a/lib/app/index.js b/lib/app/index.js index 0b54b85..d0b918d 100644 --- a/lib/app/index.js +++ b/lib/app/index.js @@ -139,6 +139,16 @@ class App // Save this.config = config + + // Debug + if(this.config.debug >= 1) + { + for(const _configKey in this.config) + { + const _configValue = '' + this.config[_configKey] + console.log('app > config'.green.bold + ' - ' + _configKey.cyan + ' - ' + _configValue.cyan) + } + } } /**