Skip to content

Commit

Permalink
Error instead of warning
Browse files Browse the repository at this point in the history
  • Loading branch information
thegreyd committed Apr 24, 2024
1 parent f0849e1 commit 1837c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artbotlib/kernel_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def rhcos_kernel_info(self):
pullspec, _ = buildinfo.get_img_pullspec(self.release_img)
rhcos_build_id = await rhcos.get_rhcos_build_id_from_pullspec(pullspec)
if not rhcos_build_id:
self.logger.warning('Failed to fetch RHCOS info for %s', self.release_img)
self.logger.error('Failed to fetch RHCOS info for %s', self.release_img)
self.so.say(f'Failed to fetch RHCOS info for {self.release_img}')
return None

Expand Down

0 comments on commit 1837c86

Please sign in to comment.