Skip to content

Commit

Permalink
Update logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ykadowak committed Dec 27, 2023
1 parent a9456ef commit f74c3a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/index/job/readreplica/rotate/service/rotator.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ func (r *rotator) deleteSnapshot(ctx context.Context, snapshot *snapshotv1.Volum
log.Infof("volume snapshot(%v) deleted", snapshot.GetName())
return nil
} else {
log.Debugf("waching volume snapshot(%s) events. event: ", snapshot.GetName(), event.Type)
log.Debugf("watching volume snapshot(%s) events. event: %v", snapshot.GetName(), event.Type)
}
}
}
Expand Down Expand Up @@ -320,7 +320,7 @@ func (r *rotator) deletePVC(ctx context.Context, pvc *v1.PersistentVolumeClaim)
log.Infof("PVC(%s) deleted", pvc.GetName())
return nil
} else {
log.Debugf("waching PVC(%s) events. event: %v", pvc.GetName(), event.Type)
log.Debugf("watching PVC(%s) events. event: %v", pvc.GetName(), event.Type)
}
}
}
Expand Down

0 comments on commit f74c3a7

Please sign in to comment.