Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/pydio/cells
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed May 26, 2021
2 parents 85a760d + 074bf58 commit 52d9242
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,9 @@ ENVIRONMENT
if (process == nil || len(process.Services) == 0) && len(childrenProcesses) == 0 {
return nil
}
log.Info("Services are still running ", zap.Any("services", process.Services))
if process != nil {
log.Debug("Services are still running ", zap.Any("services", process.Services))
}
continue
case <-timeout:
return nil
Expand Down

0 comments on commit 52d9242

Please sign in to comment.