mirror of
https://github.com/strapi/strapi.git
synced 2025-11-16 18:19:34 +00:00
Do not log admin URL if dry application
This commit is contained in:
parent
228247eb86
commit
b25760d22f
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user