Hey I'm having trouble using the ProgressPlugin mixin to work. Using the documentation and other examples I was able to get the following code to load in properly, but I don't get output in either the octoprint log or my server, I also tested a paired down urllib request only in python (no plugin code) that was able to contact the server successfully. Is my log statement correct, at least? And where would that get logged to, the octoprint.log file?
I tried it again with the original code and it doesn't seem to be showing in the log.
I can see the plugin getting successfully registered: Visor Progress (1.0.0) = /home/pi/.octoprint/plugins/VisorProgressPlugin.py
and the bundled tracking plugin is showing my plugin being installed: 2021-12-18 20:26:50,483 - octoprint.plugins.tracking - INFO - Sent tracking event install_plugin, payload: {'plugin': 'VisorProgressPlugin', 'plugin_version': '1.0.0'}
And I can see the print job start in the log: 2021-12-18 20:30:37,417 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: xyzCalibration_cube.gcode, owner: falldeaf, user: falldeaf
But I don't see any print events from that line of code ( self._logger.info(url)) I'm assuming there should be 100 events in the log, one for each percentage of the print job, based on the docs for on_print_progress?
It was a restart Sorry for wasting your time and thank you so much for helping me out. I really appreciate your guidance and for you taking the time!!!