Add config log

This commit is contained in:
brunosimon
2017-07-30 14:29:44 +02:00
parent a847393444
commit d27ab74ef1
+10
View File
@@ -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)
}
}
}
/**