Skip to content

Commit

Permalink
change log to warning, as it is ok to have no thumbnail
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolivierarsenault committed Sep 13, 2024
1 parent f476e26 commit a373446
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom_components/moonraker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ async def _async_get_gcode_file_detail(self, gcode_filename):
return_gcode["thumbnails_path"] = os.path.join(dirname, path)
return return_gcode
except Exception as ex:
_LOGGER.error("failed to get thumbnails {%s}", ex)
_LOGGER.error("Query Object {%s}", query_object)
_LOGGER.error("gcode {%s}", gcode)
_LOGGER.warning("failed to get thumbnails {%s}", ex)
_LOGGER.warning("Query Object {%s}", query_object)
_LOGGER.warning("gcode {%s}", gcode)
return return_gcode

async def _async_fetch_data(
Expand Down

0 comments on commit a373446

Please sign in to comment.