Skip to content

Commit

Permalink
fix(rubygems): Remove verbose debug logging (#22235)
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed May 15, 2023
1 parent 9f9c1d9 commit a732b39
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions lib/modules/datasource/rubygems/versions-datasource.ts
Expand Up @@ -45,15 +45,7 @@ const Lines = z
}
}
return { packageName, deletedVersions, addedVersions };
}),
{
onError: ({ error: err, input }) => {
logger.debug(
{ err, input },
'Rubygems: failed to parse some version lines'
);
},
}
})
)
);
type Lines = z.infer<typeof Lines>;
Expand Down

0 comments on commit a732b39

Please sign in to comment.