Do not log admin URL if dry application

This commit is contained in:
loicsaintroch 2015-12-11 12:17:48 +01:00
parent 228247eb86
commit b25760d22f

View File

@ -48,7 +48,11 @@ module.exports = function start(configOverride, cb) {
if (cluster.isMaster) {
self.log.info('Server started in ' + self.config.appPath);
self.log.info('Your server is running at ' + self.config.url);
if (!self.config.dry) {
self.log.info('Your admin panel is available at ' + self.config.url + '/admin/');
}
self.log.debug('Time: ' + new Date());
self.log.debug('Environment: ' + self.config.environment);
self.log.debug('Process PID: ' + process.pid);