Skip to content

Commit

Permalink
Removing an annoying log.
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnDamerell committed Aug 17, 2024
1 parent 03a181d commit 1898c76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion moonraker_octoeverywhere/moonrakerclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,8 @@ def GetCurrentLayerInfo(self):
if totalLayers == 0:
if self.Logger.isEnabledFor(logging.DEBUG):
self.Logger.debug("GetCurrentLayerInfo failed to get a total layer count. "+json.dumps(printStats))
self.Logger.warn("GetCurrentLayerInfo failed to get a total layer count.")
# Dont log, this seems to be somewhat common on some printers like the K1 and others.
#self.Logger.warn("GetCurrentLayerInfo failed to get a total layer count.")
return (0,0)

# Next, try to get the current layer.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
# Note that this single version string is used by all of the plugins in OctoEverywhere!
plugin_version = "3.5.1"
plugin_version = "3.5.2"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit 1898c76

Please sign in to comment.