Add debug output when dealing with a server that is being restarted
This commit is contained in:
parent
b3de4705ae
commit
3663a8fb31
5
wings.go
5
wings.go
|
@ -109,6 +109,11 @@ func main() {
|
||||||
// If the server is not in a running state right now but according to the configuration it
|
// If the server is not in a running state right now but according to the configuration it
|
||||||
// should be, we want to go ahead and restart the instance.
|
// should be, we want to go ahead and restart the instance.
|
||||||
if s.State == server.ProcessRunningState || s.State == server.ProcessStartingState {
|
if s.State == server.ProcessRunningState || s.State == server.ProcessStartingState {
|
||||||
|
zap.S().Infow(
|
||||||
|
"server state does not match last recorded state in configuration, starting instance now",
|
||||||
|
zap.String("server", s.Uuid),
|
||||||
|
)
|
||||||
|
|
||||||
if err := s.Environment.Start(); err != nil {
|
if err := s.Environment.Start(); err != nil {
|
||||||
zap.S().Warnw(
|
zap.S().Warnw(
|
||||||
"failed to put server instance back in running state",
|
"failed to put server instance back in running state",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user