Skip to content

Commit

Permalink
Add log for operationType
Browse files Browse the repository at this point in the history
  • Loading branch information
enxebre committed May 13, 2019
1 parent 3ec4de0 commit 8fef0bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cloud/gcp/actuators/machine/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func (r *Reconciler) waitUntilOperationCompleted(zone, operationName string) (*c
if err != nil {
return false, err
}
klog.V(3).Infof("Waiting for operation to be completed... (status: %s)", op.Status)
klog.V(3).Infof("Waiting for %q operation to be completed... (status: %s)", op.OperationType, op.Status)
if op.Status == "DONE" {
if op.Error == nil {
return true, nil
Expand Down

0 comments on commit 8fef0bd

Please sign in to comment.