diff --git a/internal/actions/update.go b/internal/actions/update.go index 8853c6ef8..71f5da901 100644 --- a/internal/actions/update.go +++ b/internal/actions/update.go @@ -222,10 +222,12 @@ func restartStaleContainer(container types.Container, client container.Client, p if !params.NoRestart { if newContainerID, err := client.StartContainer(container); err != nil { + log.Info("Error occurred while starting the container.") log.Error(err) return err } else if container.ToRestart() && params.LifecycleHooks { lifecycle.ExecutePostUpdateCommand(client, newContainerID) + log.Info("Container updated successfully.") } } return nil