removing un-necessary console.log() calls

This commit is contained in:
Liran Tal
2014-10-25 01:06:19 +03:00
parent 9b694dbbf3
commit 1ee5bc1f46

View File

@@ -17,7 +17,6 @@ module.exports = function() {
glob('./config/env/' + process.env.NODE_ENV + '.js', {
sync: true
}, function(err, environmentFiles) {
console.log();
if (!environmentFiles.length) {
if (process.env.NODE_ENV) {
console.error(chalk.red('No configuration file found for "' + process.env.NODE_ENV + '" environment using development instead'));
@@ -29,7 +28,6 @@ module.exports = function() {
} else {
console.log(chalk.black.bgWhite('Application loaded using the "' + process.env.NODE_ENV + '" environment configuration'));
}
console.log('\x1b[0m');
});
/**