Skip to content

Commit ffae4f6

Browse files
committed
chore(purge): change the level of dry run messages
1 parent d15aa54 commit ffae4f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions/purge/handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ func Handle(w http.ResponseWriter, r *http.Request) {
233233
// DeleteTag deletes a tag
234234
func (r *RegistryClient) DeleteTag(ctx context.Context, tag *registry.Tag) error {
235235
if r.config.DryRun {
236-
slog.Debug(fmt.Sprintf("[DRY RUN] Would delete tag: %s (%s)", tag.Name, tag.ID))
236+
slog.Info(fmt.Sprintf("[DRY RUN] Would delete tag: %s (%s)", tag.Name, tag.ID))
237237
return nil
238238
}
239239

0 commit comments

Comments
 (0)